archai/setup.py

64 строки
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
with open("README.md", "r", encoding="utf_8") as f:
long_description = f.read()
2020-05-18 13:11:07 +03:00
install_requires = [
"coloredlogs>=15.0.1",
"datasets>=2.4.0",
"ftfy>=6.1.1",
"gorilla>=0.4.0",
"h5py>=3.7.0",
"hyperopt>=0.2.7",
"kaleido>=0.2.1",
"matplotlib>=3.5.3",
"nv-dllogger>=1.0.0",
"onnx==1.10.2",
"onnxruntime==1.10.0",
"overrides==3.1.0",
"plotly>=5.10.0",
"psutil>=5.9.1",
"pynvml>=11.4.1",
"pyunpack>=0.3",
"pyyaml==6.0",
"ray>=1.0.0",
"requests==2.25.1",
"runstats>=2.0.0",
"sacremoses>=0.0.53",
"scikit-learn>=1.0.2",
"seaborn>=0.11.2",
"send2trash>=1.8.0",
"statopt>=0.2",
"sympy>=1.10.1",
"tensorboard>=2.10.0",
"tensorwatch>=0.9.1",
"tokenizers>=0.12.1",
"tqdm>=4.64.0",
"transformers>=4.21.1",
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",
version="0.6.7",
2022-08-19 21:16:44 +03:00
description="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",
license="MIT",
install_requires=install_requires,
packages=find_packages(),
2020-05-18 13:11:07 +03:00
include_package_data=True,
2022-05-03 03:46:13 +03:00
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
2022-05-03 03:46:13 +03:00
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
2020-05-18 13:11:07 +03:00
)