forked from Seeed-Studio/ModelAssistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
143 lines (124 loc) · 4.73 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
# Copyright (c) Seeed Technology Co.,Ltd. All rights reserved.
import os
import platform
import shutil
import sys
import warnings
from setuptools import find_packages, setup
def readme():
with open('README.md', encoding='utf-8') as f:
content = f.read()
return content
def get_version():
version_file = 'sscma/version.py'
with open(version_file, 'r', encoding='utf-8') as f:
exec(compile(f.read(), version_file, 'exec'))
return locals()['__version__']
def parse_line(line: str):
if '#' in line:
return line.split('#')[0]
else:
return line
def get_cuda_availability():
nvidia_smi = 'nvidia-smi'
return not os.system(nvidia_smi)
def parse_requirements(fpath: str = ''):
reqs = []
index = []
if not fpath.strip():
if get_cuda_availability():
fpath = 'requirements_cuda.txt'
else:
fpath = 'requirements.txt'
with open(fpath, 'r', encoding='utf-8') as f:
data = f.readlines()
for line in data:
line = line.strip()
if line and not line.startswith('#'):
if line.startswith('-r'):
res = parse_requirements(line.split(' ')[-1])
reqs += res[0]
index += res[1]
elif line.startswith('-i'):
index.append(parse_line(line))
else:
reqs.append(parse_line(line))
return reqs, index
def add_mim_extension():
if platform.system() == 'Windows':
mode = 'copy'
else:
mode = 'symlink'
if 'sdist' in sys.argv or 'bdist_wheel' in sys.argv:
mode = 'copy'
filenames = ['tools', 'configs']
repo_path = os.path.dirname(__file__)
tools_path = os.path.join(repo_path, 'sscma')
os.makedirs(tools_path, exist_ok=True)
for filename in filenames:
if os.path.exists(filename):
src_path = os.path.join(repo_path, filename)
tar_path = os.path.join(tools_path, filename)
if os.path.isfile(tar_path) or os.path.islink(tar_path):
os.remove(tar_path)
elif os.path.isdir(tar_path):
shutil.rmtree(tar_path)
if mode == 'symlink':
src_relpath = os.path.relpath(src_path, os.path.dirname(tar_path))
os.symlink(src_relpath, tar_path)
elif mode == 'copy':
if os.path.isfile(src_path):
shutil.copyfile(src_path, tar_path)
elif os.path.isdir(src_path):
shutil.copytree(src_path, tar_path, dirs_exist_ok=True)
else:
warnings.warn(f'Cannot copy file {src_path}.')
else:
raise ValueError(f'Invalid mode {mode}')
if __name__ == '__main__':
requirements, index_urls = parse_requirements()
add_mim_extension()
setup(
name='sscma',
version=get_version(),
description='Seeed Studio SSCMA is an open-source project focused on embedded AI. \
We optimize the excellent algorithms from OpenMMLab for real-world scenarios and make implementation more user-friendly,\
achieving faster and more accurate inference on embedded devices.',
long_description=readme(),
long_description_content_type='text/markdown',
author='SSCMA Contributors',
author_email='',
maintainer='SSCMA Contributors',
keywords='embedded AI',
url='https://www.seeedstudio.com/',
download_url='https://github.com/Seeed-Studio/SSCMA',
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
],
install_requires=requirements,
include_package_data=True,
python_requires='>=3.8',
license='Apache License 2.0',
entry_points={
'console_scripts': [
'sscma.train=sscma.tools.train:main',
'sscma.inference=sscma.tools.inference:main',
'sscma.export=sscma.tools.export:main',
'sscma=sscma.tools.api:main',
]
},
)