25 lines
610 B
Python
25 lines
610 B
Python
from setuptools import setup
|
|
|
|
package_name = 'rtabmap_python'
|
|
|
|
setup(
|
|
name=package_name,
|
|
version='0.1.0',
|
|
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='Mathieu Labbe',
|
|
maintainer_email='matlabbe@gmail.com',
|
|
description='RTAB-Map\'s python package.',
|
|
license='BSD',
|
|
tests_require=['pytest'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
],
|
|
},
|
|
) |