forked from nicoguertler/trifinger_example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 946 Bytes
/
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
import os
import setuptools
PACKAGE_NAME = "trifinger_example"
setuptools.setup(
name=PACKAGE_NAME,
version="1.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", "trifinger_simulation", "numpy-quaternion", "quaternion"],
zip_safe=True,
description="Example package for TriFinger robot.",
license="BSD 3-clause",
# Like the CMakeLists add_executable macro, you can add your python
# scripts here.
entry_points={
"console_scripts": [
"run_robot = trifinger_example.scripts.run_robot:main"
],
},
)