setup.py 3.05 KB
Newer Older
Gems's avatar
Gems committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (c) Microsoft Corporation. All rights reserved.
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
# associated documentation files (the "Software"), to deal in the Software without restriction,
# including without limitation the rights to use, copy, modify, merge, publish, distribute,
# sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all copies or
# substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
# NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
# DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
# OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# ==================================================================================================

21
import setuptools
22
import platform
23
24
from os import walk, path

25
26
27
28
29
30
31
32
33
os_type = platform.system()
if os_type == 'Linux':
    os_name = 'POSIX :: Linux'
elif os_type == 'Darwin':
    os_name = 'MacOS'
else:
    raise NotImplementedError('current platform {} not supported'.format(os_type))

data_files = [('bin', ['node-{}-x64/bin/node'.format(os_type.lower())])]
Gems Guo's avatar
Gems Guo committed
34
for (dirpath, dirnames, filenames) in walk('./nni'):
35
36
37
38
39
40
41
    files = [path.normpath(path.join(dirpath, filename)) for filename in filenames]
    data_files.append((path.normpath(dirpath), files))

with open('../../README.md', 'r') as fh:
    long_description = fh.read()

setuptools.setup(
Gems Guo's avatar
Gems Guo committed
42
    name = 'nni',
goooxu's avatar
goooxu committed
43
    version = '999.0.0-developing',
44
45
46
47
48
49
50
    author = 'Microsoft NNI team',
    author_email = 'nni@microsoft.com',
    description = 'Neural Network Intelligence package',
    long_description = long_description,
    long_description_content_type = 'text/markdown',
    license = 'MIT',
    url = 'https://github.com/Microsoft/nni',
Gems's avatar
Gems committed
51
    packages = setuptools.find_packages('../../tools') + setuptools.find_packages('../../src/sdk/pynni')
Gems Guo's avatar
Gems Guo committed
52
53
54
    package_dir = {
        'nni_annotation': '../../tools/nni_annotation',
        'nni_cmd': '../../tools/nni_cmd',
Gems's avatar
Gems committed
55
56
        'nni_trial_tool': '../../tools/nni_trial_tool',
        'nni': '../../src/sdk/pynni/nni'
Gems Guo's avatar
Gems Guo committed
57
    },
58
59
    python_requires = '>=3.5',
    install_requires = [
Gems Guo's avatar
Gems Guo committed
60
61
62
63
        'schema',
        'pyyaml',
        'psutil',
        'requests',
chicm-ms's avatar
chicm-ms committed
64
        'astor',
Gems's avatar
Gems committed
65
66
67
68
69
70
        'pyhdfs',
        'hyperopt',
        'json_tricks',
        'numpy',
        'scipy',
        'coverage'
71
72
73
74
    ],
    classifiers = [
        'Programming Language :: Python :: 3',
        'License :: OSI Approved :: MIT License',
75
        'Operating System :: ' + os_name
76
77
78
79
    ],
    data_files = data_files,
    entry_points = {
        'console_scripts' : [
Gems Guo's avatar
Gems Guo committed
80
            'nnictl = nni_cmd.nnictl:parse_args'
81
82
83
        ]
    }
)