|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- # Copyright 2019-2021 Huawei Technologies Co., Ltd.All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- # ==============================================================================
- """Setup."""
-
- import sys
- import os
- import shutil
- import stat
- import platform
- import shlex
- import subprocess
- import types
- from importlib import import_module
- from setuptools import setup
- from setuptools.command.egg_info import egg_info
- from setuptools.command.build_py import build_py
- from setuptools.command.install import install
-
-
- def get_version():
- """
- Get version.
-
- Returns:
- str, mindinsight version.
- """
- machinery = import_module('importlib.machinery')
- module_path = os.path.join(os.path.dirname(__file__), 'mindinsight', '_version.py')
- module_name = '__mindinsightversion__'
-
- version_module = types.ModuleType(module_name)
- loader = machinery.SourceFileLoader(module_name, module_path)
- loader.exec_module(version_module)
- return version_module.VERSION
-
-
- def get_platform():
- """
- Get platform name.
-
- Returns:
- str, platform name in lowercase.
- """
- return platform.system().strip().lower()
-
-
- def get_description():
- """
- Get description.
-
- Returns:
- str, wheel package description.
- """
- os_info = get_platform()
- cpu_info = platform.machine().strip()
-
- cmd = "git log --format='[sha1]:%h, [branch]:%d' -1"
- process = subprocess.Popen(
- shlex.split(cmd),
- shell=False,
- stdin=subprocess.PIPE,
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE
- )
- stdout, _ = process.communicate()
- if not process.returncode:
- git_version = stdout.decode().strip()
- return 'mindinsight platform: %s, cpu: %s, git version: %s' % (os_info, cpu_info, git_version)
-
- return 'mindinsight platform: %s, cpu: %s' % (os_info, cpu_info)
-
-
- def get_install_requires():
- """
- Get install requirements.
-
- Returns:
- list, list of dependent packages.
- """
- with open('requirements.txt') as file:
- return file.read().strip().splitlines()
-
-
- def update_permissions(path):
- """
- Update permissions.
-
- Args:
- path (str): Target directory path.
- """
- for dirpath, dirnames, filenames in os.walk(path):
- for dirname in dirnames:
- dir_fullpath = os.path.join(dirpath, dirname)
- os.chmod(dir_fullpath, stat.S_IREAD | stat.S_IWRITE | stat.S_IEXEC | stat.S_IRGRP | stat.S_IXGRP)
- for filename in filenames:
- file_fullpath = os.path.join(dirpath, filename)
- os.chmod(file_fullpath, stat.S_IREAD)
-
-
- def run_script(script):
- """
- Run script.
-
- Args:
- script (str): Target script file path.
-
- Returns:
- int, return code.
- """
- cmd = '/bin/bash {}'.format(script)
- process = subprocess.Popen(
- shlex.split(cmd),
- shell=False
- )
- return process.wait()
-
-
- def build_dependencies():
- """Build dependencies."""
- build_dir = os.path.join(os.path.dirname(__file__), 'build')
-
- sys.stdout.write('building crc32 ...\n')
- crc32_script = os.path.join(build_dir, 'scripts', 'crc32.sh')
- rc = run_script(crc32_script)
- if rc:
- sys.stdout.write('building crc32 failure\n')
- sys.exit(1)
-
- sys.stdout.write('building ui ...\n')
- ui_script = os.path.join(build_dir, 'scripts', 'ui.sh')
- rc = run_script(ui_script)
- if rc:
- sys.stdout.write('building ui failure\n')
- sys.exit(1)
-
-
- class EggInfo(egg_info):
- """Egg info."""
-
- def run(self):
- build_dependencies()
- egg_info_dir = os.path.join(os.path.dirname(__file__), 'mindinsight.egg-info')
- shutil.rmtree(egg_info_dir, ignore_errors=True)
- super().run()
- update_permissions(egg_info_dir)
-
-
- class BuildPy(build_py):
- """Build py files."""
-
- def run(self):
- mindinsight_lib_dir = os.path.join(os.path.dirname(__file__), 'build', 'lib', 'mindinsight')
- shutil.rmtree(mindinsight_lib_dir, ignore_errors=True)
- super().run()
- update_permissions(mindinsight_lib_dir)
-
-
- class Install(install):
- """Install."""
-
- def run(self):
- super().run()
- if sys.argv[-1] == 'install':
- pip = import_module('pip')
- mindinsight_dir = os.path.join(os.path.dirname(pip.__path__[0]), 'mindinsight')
- update_permissions(mindinsight_dir)
-
-
- if __name__ == '__main__':
- version_info = sys.version_info
- if (version_info.major, version_info.minor) < (3, 7):
- sys.stderr.write('Python version should be at least 3.7\r\n')
- sys.exit(1)
-
- setup(
- name='mindinsight',
- version=get_version(),
- author='The MindSpore Authors',
- author_email='contact@mindspore.cn',
- url='https://www.mindspore.cn',
- download_url='https://gitee.com/mindspore/mindinsight/tags',
- project_urls={
- 'Sources': 'https://gitee.com/mindspore/mindinsight',
- 'Issue Tracker': 'https://gitee.com/mindspore/mindinsight/issues',
- },
- description=get_description(),
- packages=['mindinsight'],
- platforms=[get_platform()],
- include_package_data=True,
- cmdclass={
- 'egg_info': EggInfo,
- 'build_py': BuildPy,
- 'install': Install,
- },
- entry_points={
- 'console_scripts': [
- 'mindinsight=mindinsight.utils.command:main',
- 'mindconverter=mindinsight.mindconverter.cli:cli_entry',
- 'mindwizard=mindinsight.wizard.cli:cli_entry',
- 'mindoptimizer=mindinsight.optimizer.cli:cli_entry',
- ],
- },
- python_requires='>=3.7',
- install_requires=get_install_requires(),
- classifiers=[
- 'Development Status :: 4 - Beta',
- 'Environment :: Console',
- 'Environment :: Web Environment',
- 'Intended Audience :: Science/Research',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: Apache Software License',
- 'Programming Language :: Python :: 3 :: Only',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3.8',
- 'Programming Language :: Python :: 3.9',
- 'Topic :: Scientific/Engineering',
- 'Topic :: Scientific/Engineering :: Artificial Intelligence',
- 'Topic :: Software Development',
- 'Topic :: Software Development :: Libraries',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- ],
- license='Apache 2.0',
- keywords='mindinsight',
- )
|