2019-06-23 17:44:02 +02:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
2019-09-29 11:36:43 -07:00
|
|
|
package_name = 'ros2trace'
|
|
|
|
|
2019-06-23 17:44:02 +02:00
|
|
|
setup(
|
2019-09-29 11:36:43 -07:00
|
|
|
name=package_name,
|
2019-10-18 10:11:32 -07:00
|
|
|
version='0.2.9',
|
2019-06-23 17:44:02 +02:00
|
|
|
packages=find_packages(exclude=['test']),
|
2019-09-29 11:36:43 -07:00
|
|
|
data_files=[
|
|
|
|
('share/' + package_name, ['package.xml']),
|
|
|
|
],
|
2019-06-23 17:44:02 +02:00
|
|
|
install_requires=['ros2cli'],
|
|
|
|
zip_safe=True,
|
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=(
|
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-23 17:44:02 +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',
|
2019-06-23 17:44:02 +02:00
|
|
|
keywords=[],
|
2019-07-12 13:08:34 +02:00
|
|
|
description='The trace command for ROS 2 command line tools.',
|
|
|
|
long_description=(
|
|
|
|
'The package provides the trace command '
|
|
|
|
'for the ROS 2 command line tools.'
|
|
|
|
),
|
2019-06-24 10:32:24 +02:00
|
|
|
license='Apache 2.0',
|
2019-06-23 17:44:02 +02:00
|
|
|
tests_require=['pytest'],
|
|
|
|
entry_points={
|
|
|
|
'ros2cli.command': [
|
2019-09-29 11:36:43 -07:00
|
|
|
f'trace = {package_name}.command.trace:TraceCommand',
|
2019-06-23 17:44:02 +02:00
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|