-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
151 lines (124 loc) · 4.57 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
from __future__ import print_function
import os
import platform
import re
import shlex
import subprocess
import sys
from setuptools import find_packages
from setuptools import setup
version = '0.0.45'
if sys.argv[-1] == 'release':
# Release via github-actions.
commands = [
'git tag v{:s}'.format(version),
'git push origin main --tag',
]
for cmd in commands:
print('+ {}'.format(cmd))
subprocess.check_call(shlex.split(cmd))
sys.exit(0)
def get_os_and_architecture():
uname = platform.uname()
# In Python 2, uname is a tuple, in Python 3, it's a named tuple.
os_type = uname[0] if isinstance(uname, tuple) else uname.system
architecture = uname[4] if isinstance(uname, tuple) else uname.machine
return os_type, architecture
def listup_package_data():
data_files = []
for root, _, files in os.walk('skrobot/data'):
for filename in files:
data_files.append(
os.path.join(
root[len('skrobot/'):],
filename))
return data_files
setup_requires = []
with open('requirements.txt') as f:
install_requires = []
for line in f:
req = line.split('#')[0].strip()
install_requires.append(req)
docs_install_requires = []
with open('requirements_docs.txt') as f:
for line in f:
req = line.split('#')[0].strip()
docs_install_requires.append(req)
opt_install_requires = []
with open('requirements_opt.txt') as f:
for line in f:
req = line.split('#')[0].strip()
opt_install_requires.append(req)
def remove_from_requirements(install_requires, remove_req):
# If remove_req is "pyglet", requirement name with or without
# version specification will be removed.
# For example, either "pyglet" or "pyglet<2.0", "pyglet==1.4" will
# be removed.
delete_requirement = []
for req in install_requires:
req_without_version = re.split("[<>=]", req)[0]
if req_without_version == remove_req:
delete_requirement.append(req)
assert len(delete_requirement) == 1, "expect only one match"
install_requires.remove(delete_requirement.pop())
os_type, architecture = get_os_and_architecture()
if os_type == 'Darwin' or architecture == 'aarch64':
install_requires.remove('python-fcl')
extra_all_requires = ['pybullet>=2.1.9']
if (sys.version_info.major > 2):
extra_all_requires.append('open3d')
extra_all_requires.append('fast-simplification')
# Python 2.7 and 3.4 support has been dropped from packages
# version lock those packages here so install succeeds
if (sys.version_info.major, sys.version_info.minor) <= (3, 7):
# packages that no longer support old Python
lock = [('pyglet', '1.4.10', install_requires),
('cvxopt', '1.2.7', opt_install_requires)]
for name, version, requires in lock:
remove_from_requirements(requires, name)
# add working version locked requirements
requires.append('{}=={}'.format(name, version))
if sys.version_info.major >= 3:
install_requires.append(
'pyrender')
extra_all_requires += docs_install_requires + opt_install_requires
console_scripts = ["visualize-urdf=skrobot.apps.visualize_urdf:main"]
if (sys.version_info.major, sys.version_info.minor) >= (3, 6):
console_scripts.append(
"convert-urdf-mesh=skrobot.apps.convert_urdf_mesh:main")
setup(
name='scikit-robot',
version=version,
description='A Flexible Framework for Robot Control in Python',
author='iory',
author_email='[email protected]',
url='https://github.com/iory/scikit-robot',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
],
packages=find_packages(),
package_data={'skrobot': listup_package_data()},
zip_safe=False,
setup_requires=setup_requires,
install_requires=install_requires,
entry_points={
"console_scripts": console_scripts,
},
extras_require={
'opt': opt_install_requires,
'docs': docs_install_requires,
'all': extra_all_requires,
},
)