setup.py 769 Bytes
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
3
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

Deshui Yu's avatar
Deshui Yu committed
4
5
6
import setuptools

setuptools.setup(
7
    name = 'nni-tool',
goooxu's avatar
goooxu committed
8
    version = '999.0.0-developing',
9
    packages = setuptools.find_packages(exclude=['*test*']),
Deshui Yu's avatar
Deshui Yu committed
10
11
12
13

    python_requires = '>=3.5',
    install_requires = [
        'requests',
14
        'ruamel.yaml',
Gems Guo's avatar
Gems Guo committed
15
        'psutil',
16
        'astor',
17
        'schema',
18
19
        'PythonWebHDFS',
        'colorama'
Deshui Yu's avatar
Deshui Yu committed
20
21
22
23
24
25
    ],

    author = 'Microsoft NNI Team',
    author_email = 'nni@microsoft.com',
    description = 'NNI control for Neural Network Intelligence project',
    license = 'MIT',
26
    url = 'https://github.com/Microsoft/nni',
Gems Guo's avatar
Gems Guo committed
27
28
    entry_points = {
        'console_scripts' : [
Gems Guo's avatar
Gems Guo committed
29
            'nnictl = nni_cmd.nnictl:parse_args'
Gems Guo's avatar
Gems Guo committed
30
31
        ]
    }
Deshui Yu's avatar
Deshui Yu committed
32
)