forked from joshnewans/twist_stamper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 806 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
package_name = 'twist_stamper'
setup(
name=package_name,
version='0.0.3',
packages=[package_name],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Josh Newans',
maintainer_email='[email protected]',
description='ROS2 package for converting between Twist and TwistStamped messages',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'twist_stamper = twist_stamper.twist_stamper:main',
'twist_unstamper = twist_stamper.twist_unstamper:main',
],
},
)