Add 'ros2trace/' from commit '9eb99e7d9d'

git-subtree-dir: ros2trace
git-subtree-mainline: c9d2f35887
git-subtree-split: 9eb99e7d9d
This commit is contained in:
Christophe Bedard 2019-06-24 10:02:07 +02:00
commit ffd1faa1f7
11 changed files with 204 additions and 0 deletions

26
ros2trace/setup.py Normal file
View file

@ -0,0 +1,26 @@
from setuptools import find_packages
from setuptools import setup
setup(
name='ros2trace',
version='0.0.1',
packages=find_packages(exclude=['test']),
install_requires=['ros2cli'],
zip_safe=True,
maintainer='Christophe Bedard',
maintainer_email='fixed-term.christophe.bourquebedard@de.bosch.com',
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.""",
license='TODO',
tests_require=['pytest'],
entry_points={
'ros2cli.command': [
'trace = ros2trace.command.trace:TraceCommand',
],
}
)