-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (39 loc) · 1.4 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
40
41
from setuptools import setup
package_name = 'mapping_controller'
setup(
name=package_name,
version='0.0.1',
packages=[package_name],
data_files=[
('share/ament_index/resource_index/packages',
['resource/' + package_name]),
('share/' + package_name, ['package.xml']),
('share/' + package_name, ['launch/mapping_controller_launch.py']),
('share/' + package_name + '/resource',
['resource/random_bounce.yaml']),
],
install_requires=['setuptools'],
zip_safe=True,
author='Debby Nirwan',
author_email='[email protected]',
maintainer='Debby Nirwan',
maintainer_email='[email protected]',
keywords=['ROS2', 'Webots', 'Probability Mapper',
'Simulation', 'Examples'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Mapping Controller for epuck on Webots Simulator',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'random_bounce = mapping_controller.random_bounce:main',
'mission_controller = mapping_controller.mission_controller:main',
'probability_mapper = mapping_controller.probability_mapper:main',
],
},
)