-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 986 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
32
from setuptools import setup, find_packages
setup(
name="clouds",
version="0.0.0",
description="Exploring the effects of aerosols on proxies for cloud reflectivity",
long_description_content_type="text/markdown",
url="https://github.com/anndvision/clouds",
author="Andrew Jesson, Peter Manshausen, and Alyson Douglas",
author_email="[email protected]",
license="Apache-2.0",
packages=find_packages(),
install_requires=[
"econml",
"click>=8.0.1",
"torch>=1.9.0",
"numpy>=1.21.2",
"scipy>=1.7.1",
"pandas>=1.3.2",
"seaborn>=0.11.2",
"ray[tune]>=1.6.0",
"ray[default]>=1.6.0",
"hpbandster>=0.7.4",
"matplotlib>=3.4.3",
"tensorboard>=2.6.0",
"ConfigSpace>=0.4.20",
"torchvision>=0.10.0",
"scikit-learn>=0.24.2",
"pytorch-ignite>=0.4.6",
],
entry_points={"console_scripts": ["clouds=clouds.main:cli"],},
)