зеркало из https://github.com/microsoft/archai.git
40 строки
1.3 KiB
Python
40 строки
1.3 KiB
Python
# Copyright (c) Microsoft Corporation.
|
|
# Licensed under the MIT license.
|
|
|
|
import setuptools, platform
|
|
|
|
with open("README.md", "r", encoding='utf_8') as fh:
|
|
long_description = fh.read()
|
|
|
|
install_requires=[
|
|
'pystopwatch2 @ git+https://github.com/ildoonet/pystopwatch2.git',
|
|
'hyperopt', # @ git+https://github.com/hyperopt/hyperopt.git
|
|
'tensorwatch>=0.9.1', 'tensorboard',
|
|
'pretrainedmodels', 'tqdm', 'sklearn', 'matplotlib', 'psutil',
|
|
'requests', 'seaborn',
|
|
'gorilla', 'pyyaml', 'overrides', 'runstats', 'psutil', 'statopt'
|
|
]
|
|
|
|
if platform.system()!='Windows':
|
|
install_requires.append('ray')
|
|
|
|
setuptools.setup(
|
|
name="archai",
|
|
version="0.4.2",
|
|
author="Shital Shah, Debadeepta Dey,",
|
|
author_email="shitals@microsoft.com, dedey@microsoft.com",
|
|
description="Research platform for Neural Architecture Search",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/sytelus/archai",
|
|
packages=setuptools.find_packages(),
|
|
license='MIT',
|
|
classifiers=(
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
),
|
|
include_package_data=True,
|
|
install_requires=install_requires
|
|
)
|