-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 992 Bytes
/
setup.py
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
import os
from glob import glob
from setuptools import setup
PACKAGE_NAME = 'mqtt_ros_bridge'
setup(
name=PACKAGE_NAME,
version='1.1.0',
packages=[PACKAGE_NAME],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
('share/' + PACKAGE_NAME, ['package.xml']),
# Include all launch files.
(os.path.join('share', PACKAGE_NAME, 'launch'),
glob('launch/*launch.[pxy][yma]*')),
# Include all config files.
(os.path.join('share', PACKAGE_NAME, 'config'),
glob('config/*'))
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='benjaminwp18, InvincibleRMC',
maintainer_email='[email protected], [email protected]',
description='MQTT ROS Bridge',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'bridge_node = mqtt_ros_bridge.bridge_node:main'
],
},
)