-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 954 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 954 Bytes
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
from setuptools import setup
package_name = "simple_simulator"
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"]),
],
install_requires=["setuptools"],
zip_safe=True,
maintainer="jblumenkamp",
maintainer_email="jb2270@cam.ac.uk",
description="A collection of different simulated robots",
license="TODO: License declaration",
tests_require=["pytest"],
entry_points={
"console_scripts": [
"robot = simple_simulator.simple_turtlebot:main",
"robomaster = simple_simulator.simple_robomaster:main",
"minicar = simple_simulator.simple_minicar:main",
"crazyflie = simple_simulator.simple_crazyflie:main",
"fpvquad = simple_simulator.simple_fpvquad:main",
],
},
)