2019-06-23 17:44:02 +02:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='ros2trace',
|
2019-07-10 15:46:29 +02:00
|
|
|
version='0.1.0',
|
2019-06-23 17:44:02 +02:00
|
|
|
packages=find_packages(exclude=['test']),
|
|
|
|
install_requires=['ros2cli'],
|
|
|
|
zip_safe=True,
|
2019-06-24 16:13:42 +02:00
|
|
|
maintainer=(
|
|
|
|
'Christophe Bedard, '
|
|
|
|
'Ingo Lütkebohle'
|
|
|
|
),
|
|
|
|
maintainer_email=(
|
|
|
|
'fixed-term.christophe.bourquebedard@de.bosch.com, '
|
|
|
|
'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=',
|
|
|
|
keywords=[],
|
|
|
|
description='The run 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': [
|
|
|
|
'trace = ros2trace.command.trace:TraceCommand',
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|