2019-10-13 14:39:21 -07:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
package_name = 'ros2trace_analysis'
|
2021-04-14 14:34:01 -04:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name=package_name,
|
|
|
|
version='2.0.0',
|
2019-10-13 14:39:21 -07:00
|
|
|
packages=find_packages(exclude=['test']),
|
|
|
|
data_files=[
|
|
|
|
('share/' + package_name, ['package.xml']),
|
2019-12-27 12:39:39 -05:00
|
|
|
('share/ament_index/resource_index/packages',
|
|
|
|
['resource/' + package_name]),
|
2019-10-13 14:39:21 -07:00
|
|
|
],
|
|
|
|
install_requires=['ros2cli'],
|
|
|
|
zip_safe=True,
|
2021-04-14 14:34:01 -04:00
|
|
|
maintainer=(
|
|
|
|
'Christophe Bedard'
|
|
|
|
),
|
|
|
|
maintainer_email=(
|
|
|
|
'bedard.christophe@gmail.com'
|
|
|
|
),
|
|
|
|
author='Christophe Bedard',
|
|
|
|
author_email='christophe.bedard@apex.ai',
|
|
|
|
url='https://gitlab.com/ros-tracing/tracetools_analysis',
|
2019-10-13 14:39:21 -07:00
|
|
|
keywords=[],
|
2021-04-14 14:34:01 -04:00
|
|
|
description='The trace-analysis command for ROS 2 command line tools.',
|
|
|
|
long_description=(
|
|
|
|
'The package provides the trace-analysis '
|
|
|
|
'command for the ROS 2 command line tools.'
|
|
|
|
),
|
|
|
|
license='Apache 2.0',
|
2021-04-14 14:44:00 -04:00
|
|
|
tests_require=['pytest'],
|
2019-10-13 14:39:21 -07:00
|
|
|
entry_points={
|
|
|
|
'ros2cli.command': [
|
|
|
|
f'trace-analysis = {package_name}.command.trace_analysis:TraceAnalysisCommand',
|
|
|
|
],
|
|
|
|
'ros2cli.extension_point': [
|
|
|
|
f'{package_name}.verb = {package_name}.verb:VerbExtension',
|
|
|
|
],
|
|
|
|
f'{package_name}.verb': [
|
|
|
|
f'convert = {package_name}.verb.convert:ConvertVerb',
|
|
|
|
f'process = {package_name}.verb.process:ProcessVerb',
|
|
|
|
],
|
|
|
|
}
|
|
|
|
)
|