setup.py 433 Bytes
Newer Older
chicm-ms's avatar
chicm-ms committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import setuptools

setuptools.setup(
    name = 'nnicli',
    version = '999.0.0-developing',
    packages = setuptools.find_packages(),

    python_requires = '>=3.5',
    install_requires = [
        'requests'
    ],

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