"src/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "12e9c7d5d1052bde22017dfade1da61c9a27f18c"
setup.py 487 Bytes
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools

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

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

    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',
)