2018-09-07 13:21:46 +03:00
|
|
|
# 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.
|
|
|
|
# ==================================================================================================
|
|
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
from setuptools.command.install import install
|
|
|
|
from subprocess import Popen
|
|
|
|
|
|
|
|
def read(fname):
|
2018-09-11 07:53:08 +03:00
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
|
2018-09-07 13:21:46 +03:00
|
|
|
|
|
|
|
class CustomInstallCommand(install):
|
|
|
|
'''a customized install class in pip module'''
|
|
|
|
def makeInstall(self):
|
|
|
|
'''execute make pip-install command'''
|
|
|
|
cmds = ['make', 'pip-install']
|
|
|
|
process = Popen(cmds)
|
|
|
|
if process.wait() != 0:
|
|
|
|
print('Error: Make Install Failed')
|
|
|
|
exit(-1)
|
|
|
|
|
2018-09-13 08:43:52 +03:00
|
|
|
def exportToPath(self, path):
|
|
|
|
'''add path to Path through ~/.bashrc'''
|
2018-09-07 13:21:46 +03:00
|
|
|
paths = os.getenv("PATH").split(':')
|
2018-09-13 08:43:52 +03:00
|
|
|
bin_path = os.path.join(os.getenv('HOME'),'.local/'+path)
|
2018-09-07 13:21:46 +03:00
|
|
|
|
|
|
|
if bin_path not in paths:
|
|
|
|
bashrc_path = os.path.join(os.getenv('HOME'), '.bashrc')
|
|
|
|
process = Popen('echo export PATH=' + bin_path + ':\$PATH >> ' + bashrc_path, shell=True)
|
|
|
|
if process.wait() != 0:
|
2018-09-13 08:43:52 +03:00
|
|
|
print('Error: Write Bashrc Failed')
|
2018-09-07 13:21:46 +03:00
|
|
|
exit(-1)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
install.run(self)
|
|
|
|
self.makeInstall()
|
2018-09-13 08:43:52 +03:00
|
|
|
self.exportToPath('bin')
|
|
|
|
self.exportToPath('node/bin')
|
|
|
|
self.exportToPath('yarn/bin')
|
2018-09-07 13:21:46 +03:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name = 'NNI',
|
2018-09-20 09:26:53 +03:00
|
|
|
version = '0.1.1',
|
2018-09-07 13:21:46 +03:00
|
|
|
author = 'Microsoft NNI Team',
|
|
|
|
author_email = 'nni@microsoft.com',
|
|
|
|
description = 'Neural Network Intelligence project',
|
2018-09-11 07:45:16 +03:00
|
|
|
long_description = read('README.md'),
|
2018-09-07 13:21:46 +03:00
|
|
|
license = 'MIT',
|
2018-09-10 06:31:54 +03:00
|
|
|
url = 'https://github.com/Microsoft/nni',
|
2018-09-07 13:21:46 +03:00
|
|
|
|
|
|
|
packages = find_packages('src/sdk/pynni', exclude=['tests']) + find_packages('tools'),
|
|
|
|
package_dir = {
|
2018-09-07 16:17:11 +03:00
|
|
|
'nni_annotation': 'tools/nni_annotation',
|
2018-09-07 13:21:46 +03:00
|
|
|
'nni': 'src/sdk/pynni/nni',
|
|
|
|
'nnicmd': 'tools/nnicmd'
|
|
|
|
},
|
|
|
|
python_requires = '>=3.5',
|
|
|
|
install_requires = [
|
|
|
|
'astor',
|
2018-09-11 05:04:33 +03:00
|
|
|
'hyperopt',
|
2018-09-07 13:21:46 +03:00
|
|
|
'json_tricks',
|
|
|
|
'numpy',
|
|
|
|
'psutil',
|
|
|
|
'pyyaml',
|
|
|
|
'requests',
|
|
|
|
'scipy'
|
|
|
|
],
|
|
|
|
|
|
|
|
cmdclass={
|
|
|
|
'install': CustomInstallCommand
|
|
|
|
}
|
|
|
|
)
|