-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (47 loc) · 1.26 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
setup(
name = 'naszilla',
version = '1.0',
author = 'Colin White, Willie Neiswanger',
author_email = 'crwhite@cs.cmu.edu',
description = 'python framework for NAS algorithms on benchmark search spaces',
license = 'Apache 2.0',
keywords = ['AutoML', 'NAS', 'Deep Learning'],
url = "https://github.com/naszilla/naszilla",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
install_requires = [
'tensorflow-gpu==1.14.0',
'tensorflow==1.14.0',
'torch==1.5.0',
'torchvision==0.6.0',
'nas-bench-201==1.3',
'pybnn',
'autograd>=1.3',
'click',
'Cython',
'ConfigSpace==0.4.12',
'ipython',
'lightgbm>=2.3.1',
'matplotlib',
'numpy',
'pandas',
'pathvalidate',
'Pillow>=7.1.2',
'psutil',
'pyyaml',
'scikit-image',
'scikit-learn>=0.23.1',
'scipy',
'seaborn',
'statsmodels',
'tensorboard==1.14.0',
'tensorflow-estimator',
'tqdm',
'xgboost'
]
)