Extract trace reading functions
This commit is contained in:
parent
cc5109f3e2
commit
de8c131a34
12 changed files with 252 additions and 80 deletions
29
tracetools_read/setup.py
Normal file
29
tracetools_read/setup.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
from setuptools import find_packages
|
||||
from setuptools import setup
|
||||
|
||||
package_name = 'tracetools_read'
|
||||
|
||||
setup(
|
||||
name=package_name,
|
||||
version='0.0.1',
|
||||
packages=find_packages(exclude=['test']),
|
||||
data_files=[
|
||||
('share/' + package_name, ['package.xml']),
|
||||
],
|
||||
install_requires=['setuptools'],
|
||||
maintainer=(
|
||||
'Christophe Bedard, '
|
||||
'Ingo Lütkebohle'
|
||||
),
|
||||
maintainer_email=(
|
||||
'fixed-term.christophe.bourquebedard@de.bosch.com, '
|
||||
'ingo.luetkebohle@de.bosch.com'
|
||||
),
|
||||
author='Christophe Bedard',
|
||||
author_email='fixed-term.christophe.bourquebedard@de.bosch.com',
|
||||
# url='',
|
||||
keywords=['ROS'],
|
||||
description='Tools for reading trace',
|
||||
license='Apache 2.0',
|
||||
tests_require=['pytest'],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue