archai/setup.py

48 строки
1.7 KiB
Python
Исходник Обычный вид История

2020-05-18 13:11:07 +03:00
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
import setuptools
2020-05-18 13:11:07 +03:00
2022-05-03 03:46:13 +03:00
with open("README.md", "r", encoding='utf_8') as fh:
2020-05-18 13:11:07 +03:00
long_description = fh.read()
2022-05-03 03:46:13 +03:00
install_requires=[
'hyperopt', 'gorilla', 'ray>=1.0.0', 'sklearn',
'tensorboard', 'tensorwatch>=0.9.1', 'tqdm',
'kaleido', 'matplotlib', 'plotly', 'seaborn',
'h5py', 'psutil', 'pynvml', 'pyunpack', 'pyyaml', 'rarfile', 'Send2Trash',
'overrides==3.1.0', 'runstats', 'statopt',
'datasets', 'sacremoses', 'tokenizers>=0.10.3', 'transformers>=4.16.2',
'onnx==1.10.2', 'onnxruntime',
'coloredlogs', 'sympy', 'ftfy', # needed for text predict, fixes text for you
2021-06-01 22:20:50 +03:00
'dllogger @ git+https://github.com/NVIDIA/dllogger.git',
2020-05-18 13:11:07 +03:00
]
2021-10-09 10:26:21 +03:00
setuptools.setup(
2022-05-03 03:46:13 +03:00
name="archai",
2021-10-09 10:28:45 +03:00
version="0.6.0",
author="Shital Shah, Debadeepta Dey",
2021-10-09 10:18:14 +03:00
author_email="shitals@microsoft.com, dedey@microsoft.com",
2022-05-03 03:46:13 +03:00
description="Research platform for Neural Architecture Search",
2020-05-18 13:11:07 +03:00
long_description=long_description,
2022-05-03 03:46:13 +03:00
long_description_content_type="text/markdown",
2021-10-09 10:28:45 +03:00
url="https://github.com/microsoft/archai",
2021-10-09 10:29:56 +03:00
packages=setuptools.find_packages(),
license='MIT',
2021-10-09 10:28:45 +03:00
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research'
],
2020-05-18 13:11:07 +03:00
include_package_data=True,
2022-05-03 03:46:13 +03:00
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",
],
2020-05-18 13:11:07 +03:00
)