-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.43 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (36 loc) · 1.43 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
32
33
34
35
36
37
38
from setuptools import find_packages, setup
import os
from glob import glob
package_name = 'ros2_mavros'
setup(
name=package_name,
version='0.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), glob('launch/*launch.[pxy][yma]*')),
(os.path.join('share', package_name), glob('rviz/*.rviz')),
(os.path.join('share', package_name), glob('config/mavros/*.yaml')),
(os.path.join('share', package_name), glob('config/kf/*.yaml')),
(os.path.join('share', package_name), glob('config/geometric_controller/*.yaml'))
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='asmbatati',
maintainer_email='asmalbatati@hotmail.com',
description='ROS 2 simulation packge of x500 UAV Control',
license='MIT',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'offboard_control = px4_offboard_control.offboard_control:main',
'arm = px4_offboard_control.arm:main',
'takeoff = px4_offboard_control.takeoff:main',
'arm_takeoff = px4_offboard_control.arm_takeoff:main',
'offboard_traj = px4_offboard_control.offboard_traj:main',
'circle = px4_offboard_control.circular_traj:main'
],
},
)