forked from chiyu1468/AirTrapMine
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
798 B
Python
28 lines
798 B
Python
from setuptools import find_packages, setup
|
|
|
|
package_name = 'unitdev02'
|
|
|
|
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']),
|
|
],
|
|
install_requires=['setuptools'],
|
|
zip_safe=True,
|
|
maintainer='picars',
|
|
maintainer_email='chiyu1468@hotmail.com',
|
|
description='TODO: Package description',
|
|
license='TODO: License declaration',
|
|
tests_require=['pytest'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'showmavsimple = unitdev02.test01:mavlink_analyzer_simple',
|
|
'fdm_switch_one = unitdev02.test01:fdm_swicth_example_one',
|
|
],
|
|
},
|
|
)
|