Add 'tracetools_launch/' from commit 'f673331bd1'

git-subtree-dir: tracetools_launch
git-subtree-mainline: a507bbce6e
git-subtree-split: f673331bd1
This commit is contained in:
Christophe Bedard 2019-06-24 10:01:57 +02:00
commit c9d2f35887
7 changed files with 140 additions and 0 deletions

View file

@ -0,0 +1,26 @@
import glob
from setuptools import find_packages
from setuptools import setup
package_name = 'tracetools_launch'
setup(
name=package_name,
version='0.0.1',
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',
maintainer_email='fixed-term.christophe.bourquebedard@de.bosch.com',
author='Christophe Bedard',
author_email='fixed-term.christophe.bourquebedard@de.bosch.com',
# url='',
keywords=['ROS'],
description='Launch integration for tracing',
license='TODO',
tests_require=['pytest'],
)