-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.21 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.21 KB
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
from setuptools import setup
package_name = "gui_tools"
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,
author="Martin Dahl, Kristofer Bengtsson, Endre Erős",
author_email="martin.dahl@chalmers.se, kristofer.bengtsson@chalmers.se, endree@chalmers.se",
maintainer="Martin Dahl, Kristofer Bengtsson, Endre Erős",
maintainer_email="martin.dahl@chalmers.se, kristofer.bengtsson@chalmers.se, endree@chalmers.se",
keywords=["ROS2", "Volvo Rita"],
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
],
description="Package containing different Graphical User Interfaces for the Volvo Rita project.",
license="",
tests_require=["pytest"],
entry_points={
"console_scripts": [
"control_gui = gui_tools.control_gui:main",
"query_gui = gui_tools.query_gui:main",
"marker_gui = gui_tools.marker_gui:main",
],
},
)