-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
179 lines (147 loc) · 4.96 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# Copyright 2022 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 os
import platform
import shlex
import stat
import subprocess
import sys
import types
from importlib import import_module
from setuptools import setup, find_packages
from setuptools.command.install import install
def get_readme_content():
pwd = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(pwd, 'README.md'), encoding='UTF-8') as f:
return f.read()
def get_version():
"""
Get version.
Returns:
str, mindpandas version.
"""
machinery = import_module('importlib.machinery')
module_path = os.path.join(os.path.dirname(__file__), 'mindpandas', '_version.py')
module_name = '__mindpandasversion__'
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 'mindpandas platform: %s, cpu: %s, git version: %s' % (os_info, cpu_info, git_version)
return 'mindpandas 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()
class Install(install):
"""Install."""
def run(self):
super().run()
if sys.argv[-1] == 'install':
pip = import_module('pip')
mindpandas_dir = os.path.join(os.path.dirname(pip.__path__[0]), 'mindpandas')
update_permissions(mindpandas_dir)
if __name__ == '__main__':
version_info = sys.version_info
if (version_info.major, version_info.minor) not in {(3, 7), (3, 8), (3, 9)}:
sys.stderr.write('Python version should be 3.8 or 3.9\r\n')
sys.exit(1)
setup(
name='mindpandas',
version=get_version(),
author='The MindSpore Authors',
author_email='contact@mindspore.cn',
url='https://www.mindspore.cn',
download_url='https://gitee.com/mindspore/mindpandas/tags',
project_urls={
'Sources': 'https://gitee.com/mindspore/mindpandas',
'Issue Tracker': 'https://gitee.com/mindspore/mindpandas/issues',
},
description=get_description(),
long_description=get_readme_content(),
long_description_content_type="text/markdown",
include_package_data=True,
packages=find_packages(),
package_data={'': ["*"]},
platforms=[get_platform()],
cmdclass={
'install': Install,
},
python_requires='>=3.7, <3.10',
install_requires=get_install_requires(),
entry_points={
"console_scripts": ["yrctl=mindpandas.cli:yrctl"]
},
license='Apache 2.0',
keywords='mindpandas',
)