2019-06-17 15:22:50 +02:00
|
|
|
import glob
|
|
|
|
|
2019-06-17 09:27:51 +02:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
package_name = 'tracetools_launch'
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name=package_name,
|
2019-11-17 15:47:53 -08:00
|
|
|
version='0.2.10',
|
2019-06-17 09:27:51 +02:00
|
|
|
packages=find_packages(exclude=['test']),
|
|
|
|
data_files=[
|
|
|
|
('share/' + package_name, ['package.xml']),
|
2019-06-17 15:22:50 +02:00
|
|
|
('share/' + package_name + '/launch', glob.glob('launch/*.launch.py')),
|
2019-12-07 16:04:33 -08:00
|
|
|
('share/ament_index/resource_index/packages',
|
|
|
|
['resource/' + package_name]),
|
2019-06-17 09:27:51 +02:00
|
|
|
],
|
|
|
|
install_requires=['setuptools'],
|
2019-06-24 16:13:42 +02:00
|
|
|
maintainer=(
|
|
|
|
'Christophe Bedard, '
|
2019-10-18 17:07:18 +00:00
|
|
|
'Ingo Luetkebohle'
|
2019-06-24 16:13:42 +02:00
|
|
|
),
|
|
|
|
maintainer_email=(
|
2019-08-28 10:17:23 -04:00
|
|
|
'bedard.christophe@gmail.com, '
|
2019-06-24 16:13:42 +02:00
|
|
|
'ingo.luetkebohle@de.bosch.com'
|
|
|
|
),
|
2019-06-17 09:27:51 +02:00
|
|
|
author='Christophe Bedard',
|
|
|
|
author_email='fixed-term.christophe.bourquebedard@de.bosch.com',
|
2019-07-12 13:08:34 +02:00
|
|
|
url='https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing',
|
|
|
|
keywords=[],
|
|
|
|
description='Launch integration for tracing.',
|
|
|
|
long_description=(
|
|
|
|
'This package provides a trace action to '
|
|
|
|
'launch tracing through a launch file.'
|
|
|
|
),
|
2019-06-24 10:32:24 +02:00
|
|
|
license='Apache 2.0',
|
2019-06-17 09:27:51 +02:00
|
|
|
tests_require=['pytest'],
|
|
|
|
)
|