setup.py 522 Bytes
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
3
4
5
6
7
8
9
10
11
import setuptools

setuptools.setup(
    name = 'nnictl',
    version = '0.0.1',
    packages = setuptools.find_packages(),

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

    author = 'Microsoft NNI Team',
    author_email = 'nni@microsoft.com',
    description = 'NNI control for Neural Network Intelligence project',
    license = 'MIT',
    url = 'https://msrasrg.visualstudio.com/NeuralNetworkIntelligence',
)