2019-06-24 16:06:17 +02:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
package_name = 'tracetools_read'
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name=package_name,
|
2019-07-10 15:46:29 +02:00
|
|
|
version='0.1.0',
|
2019-06-24 16:06:17 +02:00
|
|
|
packages=find_packages(exclude=['test']),
|
|
|
|
data_files=[
|
|
|
|
('share/' + package_name, ['package.xml']),
|
|
|
|
],
|
|
|
|
install_requires=['setuptools'],
|
|
|
|
maintainer=(
|
|
|
|
'Christophe Bedard, '
|
|
|
|
'Ingo Lütkebohle'
|
|
|
|
),
|
|
|
|
maintainer_email=(
|
|
|
|
'fixed-term.christophe.bourquebedard@de.bosch.com, '
|
|
|
|
'ingo.luetkebohle@de.bosch.com'
|
|
|
|
),
|
|
|
|
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='Tools for reading traces.',
|
2019-06-24 16:06:17 +02:00
|
|
|
license='Apache 2.0',
|
|
|
|
tests_require=['pytest'],
|
|
|
|
)
|