forked from tinyms-ai/tinyms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
111 lines (96 loc) · 3.47 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
#!/usr/bin/env python3
# encoding: utf-8
# Copyright 2021 Huawei Technologies Co., Ltd
#
# 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 package."""
import os
import setuptools
package_name = 'tinyms'
version_tag = '0.2.0'
pwd = os.path.dirname(os.path.realpath(__file__))
def _read_file(filename):
with open(os.path.join(pwd, filename), encoding='UTF-8') as f:
return f.read()
readme = _read_file('README.md')
def _write_version(file):
file.write("__version__ = '{}'\n".format(version_tag))
setup_required_package = [
'wheel >= 0.32.0',
'setuptools >= 40.8.0',
]
install_required_package = [
'numpy >= 1.17.0',
'easydict >= 1.9',
'scipy >= 1.5.2',
'matplotlib >= 3.1.3',
'Pillow >= 6.2.0',
'mindspore == 1.2.0',
'requests >= 2.22.0',
'flask >= 1.1.1',
'python-Levenshtein >= 0.10.2',
'gensim >= 3.8.1',
'PyYAML',
]
test_required_package = [
'pycocotools >= 2.0.0',
]
package_data = {
'tinyms.hub': [
'assets/tinyms/*/*.yaml',
]
}
if __name__ == "__main__":
with open(os.path.join(pwd, package_name, 'version.py'), 'w') as f:
_write_version(f)
setuptools.setup(
name=package_name,
version=version_tag,
author='The TinyMS Authors',
author_email='[email protected]',
url='https://tinyms.readthedocs.io/en/latest/',
download_url='https://github.com/tinyms-ai/tinyms/tags',
project_urls={
'Sources': 'https://github.com/tinyms-ai/tinyms',
'Issue Tracker': 'https://github.com/tinyms-ai/tinyms/issues',
},
description='TinyMS is an Easy-to-Use deep learning development toolkit.',
long_description="\n\n".join([readme]),
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
package_data=package_data,
include_package_data=True,
python_requires='>=3.7',
setup_requires=setup_required_package,
install_requires=install_required_package,
tests_require=test_required_package,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'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='machine learning toolkit',
)