-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
39 lines (34 loc) · 1.13 KB
/
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
36
37
38
39
from glob import glob
import os
from setuptools import setup
package_name = 'create2_utilities'
data_files = []
# Install marker file in the package index
data_files.append(('share/ament_index/resource_index/packages', ['resource/' + package_name]))
# Include our package.xml file`
data_files.append(('share/' + package_name, ['package.xml']))
# Include all launch files
data_files.append((os.path.join('share', package_name, 'launch'), glob('launch/*.launch.py')))
# Configuration files
data_files.append(('share/' + package_name + '/resource', [
'resource/bringup.rviz',
]))
setup(
name=package_name,
version='0.0.0',
packages=[package_name],
data_files=data_files,
install_requires=['setuptools'],
zip_safe=True,
author='Emiliano J. Borghi Orue',
author_email='[email protected]',
maintainer='Emiliano J. Borghi Orue',
maintainer_email='[email protected]',
description='ROS 2 package for the iRobot Create 2 with graphical and testing tools.',
license='Apache License, Version 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
],
},
)