Add example launch file with Trace action

This commit is contained in:
Christophe Bedard 2019-06-17 15:22:50 +02:00
parent bf8a2b01ad
commit 152fa2f5f3
2 changed files with 24 additions and 0 deletions

View file

@ -1,3 +1,5 @@
import glob
from setuptools import find_packages
from setuptools import setup
@ -9,6 +11,7 @@ setup(
packages=find_packages(exclude=['test']),
data_files=[
('share/' + package_name, ['package.xml']),
('share/' + package_name + '/launch', glob.glob('launch/*.launch.py')),
],
install_requires=['setuptools'],
maintainer='Christophe Bedard',