setup.py 532 Bytes
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
3
4
import setuptools

setuptools.setup(
    name = 'nnictl',
5
6
    version = '0.2.0',
    packages = setuptools.find_packages(exclude=['*test*']),
Deshui Yu's avatar
Deshui Yu committed
7
8
9
10
11

    python_requires = '>=3.5',
    install_requires = [
        'requests',
        'pyyaml',
Gems Guo's avatar
Gems Guo committed
12
        'psutil',
13
        'astor',
14
        'schema',
15
        'pyhdfs'
Deshui Yu's avatar
Deshui Yu committed
16
17
18
19
20
21
    ],

    author = 'Microsoft NNI Team',
    author_email = 'nni@microsoft.com',
    description = 'NNI control for Neural Network Intelligence project',
    license = 'MIT',
22
    url = 'https://github.com/Microsoft/nni',
Deshui Yu's avatar
Deshui Yu committed
23
)