-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 959 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 959 Bytes
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
from glob import glob
from setuptools import setup
package_name = 'urdfdom_py'
setup(
name=package_name,
version='1.2.1',
package_dir={'': 'src'},
packages=['urdf_parser_py', 'urdf_parser_py.xml_reflection'],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
],
install_requires=['setuptools'],
zip_safe=True,
keywords=['ROS2'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development',
],
maintainer='Chris Lalancette',
maintainer_email='clalancette@openrobotics.org',
description='Python implementation of the URDF parser.',
license='BSD',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'display_urdf = urdf_parser_py.display_urdf:main',
],
},
)