forked from microsoft/archai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.61 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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
from setuptools import find_packages, setup
with open("README.md", "r", encoding='utf_8') as fh:
long_description = fh.read()
install_requires=[
'pystopwatch2',
'hyperopt',
'tensorwatch>=0.9.1', 'tensorboard',
'pretrainedmodels', 'tqdm', 'sklearn', 'matplotlib', 'psutil',
'requests', 'seaborn', 'h5py', 'rarfile',
'gorilla', 'pyyaml', 'overrides==3.1.0', 'runstats', 'psutil', 'statopt',
'pyunpack', 'patool', 'ray>=1.0.0', 'Send2Trash',
'transformers', 'pytorch_lightning', 'tokenizers', 'datasets',
'ftfy', # needed for text scoring, fixes text for you
# nvidia transformer-xl
'nv_dllogger', # needed for compatibility between pip and setuptools
'pytorch-transformers', 'sacremoses', 'pynvml'
]
setup(
name="archai",
version="0.6.4",
description="Research platform for Neural Architecture Search",
long_description=long_description,
long_description_content_type="text/markdown",
author="Shital Shah, Debadeepta Dey",
author_email="[email protected], [email protected]",
url="https://github.com/microsoft/archai",
license="MIT",
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)