-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
31 lines (30 loc) · 975 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup(
name="overcast",
version="0.0.0",
description="Scalable Sensitivty and Uncertainty Analyses for Causal-Effect Estimates of Continuous Valued Interventions",
long_description_content_type="text/markdown",
url="https://github.com/anndvision/overcast",
author="Andrew Jesson",
author_email="[email protected]",
license="Apache-2.0",
packages=find_packages(),
install_requires=[
"click==8.0.4",
"torch==1.10.0",
"numpy==1.21.2",
"scipy==1.7.1",
"pandas==1.3.4",
"seaborn==0.11.2",
"ray[tune]==1.7",
"ray[default]==1.7",
"hpbandster==0.7.4",
"matplotlib==3.4.3",
"tensorboard==2.7.0",
"ConfigSpace==0.4.20",
"torchvision==0.11.1",
"scikit-learn==0.24.2",
"pytorch-ignite==0.4.7",
],
entry_points={"console_scripts": ["overcast=overcast.main:cli"],},
)