-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
34 lines (31 loc) · 1023 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
import os
from glob import glob
from setuptools import setup, find_packages
PACKAGE_NAME = 'rtk_mapper'
setup(
name=PACKAGE_NAME,
version='0.1.0',
packages=find_packages(),
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + PACKAGE_NAME]),
('share/' + PACKAGE_NAME, ['package.xml']),
(os.path.join('share', PACKAGE_NAME), glob('launch/*.launch.py')),
(os.path.join('share', PACKAGE_NAME), glob('config/*.yaml'))
],
install_requires=['setuptools'],
zip_safe=True,
author='Angus Stewart',
author_email='siliconlad@protonmail.com',
maintainer='Angus Stewart',
maintainer_email='siliconlad@protonmail.com',
description='A utility to map the cones of a Formula Student track using an RTK receiver.',
license='MIT',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'mapper = rtk_mapper.mapper:main',
'viewer = rtk_mapper.viewer:main'
],
},
)