-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.25 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
"""Setup the ezrassor_controller_server module."""
import setuptools
import glob
setuptools.setup(
name="ezrassor_controller_server",
version="2.0.0",
description="Handle incoming network requests for the EZRASSOR.",
maintainer="EZRASSOR Team",
maintainer_email="ez.rassor@gmail.com",
license="MIT",
keywords=["EZRASSOR", "ROS", "ISRU", "NASA", "Rover", "UCF", "Robotics"],
classifiers=[
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
],
packages=["ezrassor_controller_server"],
package_dir={"": "source"},
install_requires=["setuptools"],
data_files=[
(
"share/ament_index/resource_index/packages",
["resources/ezrassor_controller_server"],
),
("share/ezrassor_controller_server", ["package.xml"]),
("share/ezrassor_controller_server/launch", glob.glob("launch/*")),
],
tests_require=["pytest"],
entry_points={
"console_scripts": [
"controller_server = ezrassor_controller_server.__main__:main",
],
},
)