ros2_tracing/ros2trace/setup.py

40 lines
1.1 KiB
Python
Raw Normal View History

2019-06-23 17:44:02 +02:00
from setuptools import find_packages
from setuptools import setup
package_name = 'ros2trace'
2019-06-23 17:44:02 +02:00
setup(
name=package_name,
2019-11-17 15:47:53 -08:00
version='0.2.10',
2019-06-23 17:44:02 +02:00
packages=find_packages(exclude=['test']),
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, '
'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',
url='https://gitlab.com/micro-ROS/ros_tracing/ros2_tracing',
2019-06-23 17:44:02 +02:00
keywords=[],
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.'
),
license='Apache 2.0',
2019-06-23 17:44:02 +02:00
tests_require=['pytest'],
entry_points={
'ros2cli.command': [
f'trace = {package_name}.command.trace:TraceCommand',
2019-06-23 17:44:02 +02:00
],
}
)