-
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) · 978 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 978 Bytes
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 setup
from glob import glob
import os
package_name = 'ur5e_navigation'
setup(
name=package_name,
version='0.0.0',
packages=[package_name],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
(os.path.join('share', package_name, 'launch'), glob('launch/*.py')),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='your_name',
maintainer_email='[email protected]',
description='UR5e navigation using ROS 2 Iron and MoveIt',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'lifecycle_node = ur5e_navigation.lifecycle_node:main',
'navigation_service = ur5e_navigation.navigation_service:main',
'reach_pose_action_server = ur5e_navigation.reach_pose_action:main',
],
},
)