-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
53 lines (51 loc) · 1.9 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
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup
package_name = 'mcl'
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/mcl_launch.py']),
('share/' + package_name + '/resource',
['resource/random_bounce.yaml']),
('share/' + package_name + '/resource',
['resource/motion_model.yaml']),
('share/' + package_name + '/resource',
['resource/epuck_world_map.pgm']),
('share/' + package_name + '/resource',
['resource/epuck_world_map.yaml']),
('share/' + package_name + '/resource',
['resource/configs.rviz']),
('share/' + package_name + '/resource',
['resource/sensor_model.yaml']),
('share/' + package_name + '/resource',
['resource/mcl.yaml']),
],
install_requires=['setuptools'],
zip_safe=True,
author='Debby Nirwan',
author_email='debby_nirwan@yahoo.com',
maintainer='Debby Nirwan',
maintainer_email='debby_nirwan@yahoo.com',
keywords=['ROS2', 'Webots', 'Monte Carlo Localization',
'MCL', 'Simulation', 'Examples', 'Particle Filter'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development',
],
description='Monte Carlo Lozalizer for epuck on Webots Simulator',
license='Apache License 2.0',
tests_require=['pytest'],
entry_points={
'console_scripts': [
'random_bounce = mcl.random_bounce:main',
'mission_controller = mcl.mission_controller:main',
'monte_carlo_localizer = mcl.monte_carlo_localizer:main',
],
},
)