diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/package.xml b/jetson/ros2_ws/src/saltybot_photo_capture/package.xml new file mode 100644 index 0000000..f617f01 --- /dev/null +++ b/jetson/ros2_ws/src/saltybot_photo_capture/package.xml @@ -0,0 +1,15 @@ + + + + saltybot_photo_capture + 0.1.0 + Photo capture service for SaltyBot (Issue #456) + seb + MIT + rclpy + std_msgs + sensor_msgs + cv_bridge + python3-pytest + ament_python + diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/resource/saltybot_photo_capture b/jetson/ros2_ws/src/saltybot_photo_capture/resource/saltybot_photo_capture new file mode 100644 index 0000000..e69de29 diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/setup.cfg b/jetson/ros2_ws/src/saltybot_photo_capture/setup.cfg new file mode 100644 index 0000000..002bb33 --- /dev/null +++ b/jetson/ros2_ws/src/saltybot_photo_capture/setup.cfg @@ -0,0 +1,2 @@ +[develop] +script_dir=$base/lib/saltybot_photo_capture/scripts diff --git a/jetson/ros2_ws/src/saltybot_photo_capture/setup.py b/jetson/ros2_ws/src/saltybot_photo_capture/setup.py new file mode 100644 index 0000000..c9d3035 --- /dev/null +++ b/jetson/ros2_ws/src/saltybot_photo_capture/setup.py @@ -0,0 +1,30 @@ +from setuptools import find_packages, setup +import os +from glob import glob + +setup( + name='saltybot_photo_capture', + version='0.1.0', + packages=find_packages(exclude=['test']), + data_files=[ + ('share/ament_index/resource_index/packages', + ['resource/saltybot_photo_capture']), + ('share/saltybot_photo_capture', ['package.xml']), + (os.path.join('share', 'saltybot_photo_capture', 'launch'), + glob(os.path.join('launch', '*launch.[pxy][yma]*'))), + (os.path.join('share', 'saltybot_photo_capture', 'config'), + glob(os.path.join('config', '*.yaml'))), + ], + install_requires=['setuptools'], + zip_safe=True, + maintainer='seb', + maintainer_email='seb@vayrette.com', + description='Photo capture service for SaltyBot (Issue #456)', + license='MIT', + tests_require=['pytest'], + entry_points={ + 'console_scripts': [ + 'photo_capture_node = saltybot_photo_capture.photo_capture_node:main', + ], + }, +)