-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (42 loc) · 1.7 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
import os
import setuptools
PACKAGE_NAME = "rrc_example_package"
setuptools.setup(
name=PACKAGE_NAME,
version="2.0.0",
# Packages to export
packages=setuptools.find_packages(),
data_files=[
# Install "marker" file in package index
(
"share/ament_index/resource_index/packages",
["resource/" + PACKAGE_NAME],
),
# Include our package.xml file
(os.path.join("share", PACKAGE_NAME), ["package.xml"]),
],
# This is important as well
install_requires=["setuptools"],
zip_safe=True,
author="Felix Widmaier",
author_email="[email protected]",
maintainer="Felix Widmaier",
maintainer_email="[email protected]",
description="Example package for the Real Robot Challenge Submission System.",
license="BSD 3-clause",
# Like the CMakeLists add_executable macro, you can add your python
# scripts here.
entry_points={
"console_scripts": [
"real_move_up_and_down = rrc_example_package.scripts.real_move_up_and_down:main",
"sim_move_up_and_down = rrc_example_package.scripts.sim_move_up_and_down:main",
"real_trajectory_example_with_gym = rrc_example_package.scripts.real_trajectory_example_with_gym:main",
"sim_trajectory_example_with_gym = rrc_example_package.scripts.sim_trajectory_example_with_gym:main",
"dice_example_with_gym = rrc_example_package.scripts.dice_example_with_gym:main",
# custom scripts:
"evaluate_stage1 = rrc_example_package.scripts.evaluate_stage1:main",
"train = rrc_example_package.her.train:main",
"demo = rrc_example_package.her.demo:main",
],
},
)