-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 830 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 830 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
from setuptools import setup
from glob import glob
package_name = 'ardupilot_simple_flight'
setup(
name=package_name,
version='0.1.0',
packages=[package_name],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Your Name',
maintainer_email='your.email@example.com',
description='A simple flight routine for ArduPilot using ROS 2.',
license='MIT',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'simple_flight_node = ardupilot_simple_flight.simple_flight_node:main'
],
},
data_files=[
('share/ament_index/resource_index/packages', ['resource/ardupilot_simple_flight']),
('share/ardupilot_simple_flight', ['package.xml']),
('share/ardupilot_simple_flight/launch', glob('launch/*.launch.py')),
],
)