-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 790 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
setup(
name="ucate",
version="0.0.0",
description="Exploring uncertainty for CATE inference",
long_description_content_type="text/markdown",
url="https://github.com/OATML/ucate",
author="Andrew Jesson",
author_email="andrew.jesson@cs.ox.ac.uk",
license="Apache-2.0",
packages=find_packages(),
install_requires=[
"rpy2",
"click",
"numpy>=1.16.0,<1.19.0",
"scipy",
"pandas",
"sklearn",
"seaborn",
"matplotlib",
"tensorflow==2.3.1",
"tensorflow-probability==0.11.1",
],
entry_points={
"console_scripts": ["ucate=ucate.application.main:cli"],
},
)