2019-06-06 09:36:53 +02:00
|
|
|
from setuptools import find_packages
|
2019-06-06 09:28:25 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
package_name = 'tracetools_trace'
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name=package_name,
|
2019-08-16 16:11:14 +02:00
|
|
|
version='0.2.6',
|
2019-06-06 09:36:53 +02:00
|
|
|
packages=find_packages(exclude=['test']),
|
2019-06-06 09:28:25 +02:00
|
|
|
data_files=[
|
|
|
|
('share/' + package_name, ['package.xml']),
|
|
|
|
],
|
|
|
|
install_requires=['setuptools'],
|
2019-06-24 16:13:42 +02:00
|
|
|
maintainer=(
|
|
|
|
'Christophe Bedard, '
|
2019-07-31 10:10:33 +02:00
|
|
|
'Ingo Lütkebohle'
|
2019-06-24 16:13:42 +02:00
|
|
|
),
|
|
|
|
maintainer_email=(
|
|
|
|
'fixed-term.christophe.bourquebedard@de.bosch.com, '
|
|
|
|
'ingo.luetkebohle@de.bosch.com'
|
|
|
|
),
|
2019-06-06 09:37:20 +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='Tools for setting up tracing sessions.',
|
|
|
|
long_description=(
|
|
|
|
'This package provides tools for setting up tracing sessions. '
|
|
|
|
'It also provides basic utilities to provide CLI functionality.'
|
|
|
|
),
|
2019-06-06 09:28:25 +02:00
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
f'trace = {package_name}.trace:main',
|
|
|
|
],
|
|
|
|
},
|
2019-06-24 10:32:24 +02:00
|
|
|
license='Apache 2.0',
|
2019-06-06 09:36:53 +02:00
|
|
|
tests_require=['pytest'],
|
2019-06-06 09:28:25 +02:00
|
|
|
)
|