setup.py 812 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
        'PythonWebHDFS',
SparkSnail's avatar
SparkSnail committed
19
        'colorama',
20
21
        'netifaces',
        'websockets'
Deshui Yu's avatar
Deshui Yu committed
22
23
24
25
26
27
    ],

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