-
Notifications
You must be signed in to change notification settings - Fork 97
/
setup.py
executable file
·63 lines (56 loc) · 1.74 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
#!/usr/bin/env python
import os
from setuptools import setup
install_requires = ['catkin_pkg', 'PyYAML']
if (
'SKIP_PYTHON_MODULES' not in os.environ and
'SKIP_PYTHON_SCRIPTS' not in os.environ
):
install_requires.append("distro >= 1.4.0; python_version >= '3.8'")
kwargs = {
'name': 'rospkg',
# same version as in:
# - src/rospkg/__init__.py
# - stdeb.cfg
'version': '1.5.1',
'packages': ['rospkg'],
'package_dir': {'': 'src'},
'entry_points': {
'console_scripts': ['rosversion=rospkg.rosversion:main'],
},
'install_requires': install_requires,
'extras_require': {
'test': [
"mock; python_version < '3.3'",
'pytest',
]},
'author': 'Ken Conley',
'author_email': 'kwc@willowgarage.com',
'maintainer': 'ROS Infrastructure Team',
'project_urls': {
'Source code':
'https://github.com/ros-infrastructure/rospkg',
'Issue tracker':
'https://github.com/ros-infrastructure/rospkg/issues',
},
'url': 'http://wiki.ros.org/rospkg',
'keywords': ['ROS'],
'classifiers': [
'Programming Language :: Python',
'License :: OSI Approved :: BSD License'],
'description': 'ROS package library',
'long_description': """\
Library for retrieving information about ROS packages and stacks.
""",
'license': 'BSD'
}
if 'SKIP_PYTHON_MODULES' in os.environ:
kwargs['packages'] = []
kwargs['package_dir'] = {}
kwargs['install_requires'].remove('catkin_pkg')
if 'SKIP_PYTHON_SCRIPTS' in os.environ:
kwargs['name'] += '_modules'
kwargs['install_requires'].remove('catkin_pkg')
kwargs['scripts'] = []
kwargs['entry_points']['console_scripts'] = []
setup(**kwargs)