setup.py 852 Bytes
Newer Older
liuzhe-lz's avatar
liuzhe-lz committed
1
2
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.
Deshui Yu's avatar
Deshui Yu committed
3
4
5
6
7

import os
import setuptools

def read(fname):
QuanluZhang's avatar
QuanluZhang committed
8
    return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
Deshui Yu's avatar
Deshui Yu committed
9
10

setuptools.setup(
Gems Guo's avatar
Gems Guo committed
11
    name = 'nni-sdk',
goooxu's avatar
goooxu committed
12
    version = '999.0.0-developing',
Deshui Yu's avatar
Deshui Yu committed
13
14
15
16
    packages = setuptools.find_packages(exclude=['tests']),

    python_requires = '>=3.5',
    install_requires = [
Yuge Zhang's avatar
Yuge Zhang committed
17
        'hyperopt==0.1.2',
Deshui Yu's avatar
Deshui Yu committed
18
19
        'json_tricks',
        'numpy',
chicm-ms's avatar
chicm-ms committed
20
21
        'scipy',
        'coverage'
Deshui Yu's avatar
Deshui Yu committed
22
    ],
23
    package_data = {'nni': ['**/requirements.txt']},
Deshui Yu's avatar
Deshui Yu committed
24
25
26
27
28
29

    test_suite = 'tests',

    author = 'Microsoft NNI Team',
    author_email = 'nni@microsoft.com',
    description = 'Python SDK for Neural Network Intelligence project',
QuanluZhang's avatar
QuanluZhang committed
30
    license = 'MIT',
31
    url = 'https://github.com/Microsoft/nni',
Deshui Yu's avatar
Deshui Yu committed
32
33
34

    long_description = read('README.md')
)