-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.14 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.14 KB
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
#!/usr/bin/env python
from setuptools import setup
package_name = 'rqt_tf_tree'
setup(
name=package_name,
version='1.0.6',
package_dir={'': 'src'},
packages=[package_name],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name + '/resource', ['resource/RosTfTree.ui']),
('share/' + package_name, ['package.xml']),
('share/' + package_name, ['plugin.xml']),
],
install_requires=['setuptools'],
zip_safe=True,
author='Thibault Kruse',
maintainer='Isaac I.Y. Saito',
maintainer_email='gm130s@gmail.com',
keywords=['ROS'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description=(
'rqt_tf_tree provides a GUI plugin for visualizing the ROS TF frame tree.'
),
license='BSD',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'rqt_tf_tree = ' + package_name + '.main:main'
],
},
)