-
Notifications
You must be signed in to change notification settings - Fork 96
/
setup.py
32 lines (30 loc) · 1.15 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
import os
from setuptools import setup
from glob import glob
PACKAGE_NAME = 'robot_upstart'
setup(
name=PACKAGE_NAME,
version='1.0.4',
packages=[PACKAGE_NAME],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
('share/' + PACKAGE_NAME, ['package.xml']),
(os.path.join('lib', PACKAGE_NAME, 'scripts'), glob('scripts/*')),
(os.path.join('share', PACKAGE_NAME, 'scripts'), glob('scripts/*')),
(os.path.join('share', PACKAGE_NAME, 'templates'), glob('templates/*')),
(os.path.join('share', PACKAGE_NAME, 'test'), glob('test/*.py')),
(os.path.join('share', PACKAGE_NAME, 'test/launch'), glob('test/launch/*.launch')),
],
install_requires=['setuptools'],
zip_safe=True,
maintainer='Tony Baltovski',
maintainer_email='tbaltovski@clearpathrobotics.com',
description='The robot_upstart package provides scripts which may be used to install and uninstall Ubuntu Linux upstart jobs which launch groups of roslaunch files.',
license='BSD',
tests_require=['pytest'],
entry_points={
'console_scripts': [
],
},
)