-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (40 loc) · 1.54 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
from glob import glob
import os
from setuptools import setup
package_name = 'xacro_live'
setup(
name=package_name,
version='0.0.1',
# Packages to export
packages=[package_name],
# Files we want to install, specifically launch files
data_files=[
# Install marker file in the package index
('share/ament_index/resource_index/packages', ['resource/' + package_name]),
# Include our package.xml file
(os.path.join('share', package_name), ['package.xml']),
# Include all launch & config files.
(os.path.join('share', package_name, 'launch'), glob('launch/*.launch.py')),
(os.path.join('share', package_name, 'rviz'), glob('rviz/*.rviz'))
],
# This is important as well
install_requires=['setuptools'],
zip_safe=True,
author='Mateus Amarante Araujo',
author_email='[email protected]',
maintainer='Mateus Amarante, Ivan Tarifa, Caio Amaral',
keywords=['ros2', 'xacro', 'robot_description'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Update the robot_description dinamically from updates on a target xacro file.',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': ['xacro_live = xacro_live.xacro_live_node:main'],
},
)