from setuptools import setup, find_packages setup( name='saltybot_cliff_detector', version='0.1.0', packages=find_packages(), data_files=[ ('share/ament_index/resource_index/packages', ['resource/saltybot_cliff_detector']), ('share/saltybot_cliff_detector', ['package.xml']), ('share/saltybot_cliff_detector/config', ['config/cliff_detector_config.yaml']), ('share/saltybot_cliff_detector/launch', ['launch/cliff_detector.launch.py']), ], install_requires=['setuptools'], zip_safe=True, author='SaltyLab Controls', author_email='sl-controls@saltylab.local', description='Cliff and drop-off detection safety node for SaltyBot', license='MIT', entry_points={ 'console_scripts': [ 'cliff_detector_node=saltybot_cliff_detector.cliff_detector_node:main', ], }, )