-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.14 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.14 KB
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
28
29
30
31
from setuptools import find_packages, setup
import os
from glob import glob
package_name = 'turtlebot4_johnny_lab'
setup(
name=package_name,
version='1.0.0',
packages=find_packages(exclude=['test']),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob(os.path.join('launch', '*launch.[pxy][yma]*'))),
(os.path.join('share', package_name, 'config'), glob('config/*.yaml')),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Ivan Berman',
maintainer_email='fingerling42@proton.me',
description='ROS 2 package for the Hack Johnnys Lab quest: TurtleBot 4 navigation mission, OAK-D video recording, and Robonomics/IPFS result publishing',
license='Apache-2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'johnny_lab_navigator = turtlebot4_johnny_lab.johnny_lab_navigator:main',
'johnny_lab_robonomics = turtlebot4_johnny_lab.johnny_lab_robonomics:main',
],
},
)