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
744 B
Python
28 lines
744 B
Python
|
1 year ago
|
from setuptools import find_packages, setup
|
||
|
|
|
||
|
1 year ago
|
package_name = 'unitdev01'
|
||
|
1 year ago
|
|
||
|
|
setup(
|
||
|
1 year ago
|
name=package_name,
|
||
|
1 year ago
|
version='0.0.0',
|
||
|
1 year ago
|
packages=find_packages(exclude=['test']),
|
||
|
1 year ago
|
data_files=[
|
||
|
|
('share/ament_index/resource_index/packages',
|
||
|
|
['resource/' + package_name]),
|
||
|
|
('share/' + package_name, ['package.xml']),
|
||
|
|
],
|
||
|
|
install_requires=['setuptools'],
|
||
|
|
zip_safe=True,
|
||
|
|
maintainer='dodo',
|
||
|
|
maintainer_email='dodo@todo.todo',
|
||
|
|
description='TODO: Package description',
|
||
|
|
license='TODO: License declaration',
|
||
|
|
tests_require=['pytest'],
|
||
|
|
entry_points={
|
||
|
|
'console_scripts': [
|
||
|
1 year ago
|
'interface = unitdev01.interface:main',
|
||
|
|
'mavlink = unitdev01.mavlink:main'
|
||
|
1 year ago
|
],
|
||
|
|
},
|
||
|
|
)
|