-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the gripper dummy a ROS2 package
That's easier for installation and usage in the driver's test repository. The idea is, still, to keep the dummy ROS2-free in case we want to ship it separately.
- Loading branch information
1 parent
405641d
commit ece1266
Showing
8 changed files
with
52 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>schunk_egu_egk_gripper_dummy</name> | ||
<version>0.0.0</version> | ||
<description>A minimalist dummy for simulating the gripper's communication</description> | ||
<maintainer email="[email protected]">Stefan Scherzinger</maintainer> | ||
<license>GPL-3.0-or-later</license> | ||
|
||
<export> | ||
<build_type>ament_python</build_type> | ||
</export> | ||
</package> |
Empty file.
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[develop] | ||
script_dir=$base/lib/schunk_egu_egk_gripper_dummy | ||
[install] | ||
install_scripts=$base/lib/schunk_egu_egk_gripper_dummy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
from setuptools import find_packages, setup | ||
import os | ||
from glob import glob | ||
|
||
package_name = "schunk_egu_egk_gripper_dummy" | ||
|
||
setup( | ||
name=package_name, | ||
version="0.0.0", | ||
packages=find_packages(exclude=["tests"]), | ||
data_files=[ | ||
("share/ament_index/resource_index/packages", ["resource/" + package_name]), | ||
("share/" + package_name, ["package.xml"]), | ||
(os.path.join("share", package_name), [package_name + "/main.py"]), | ||
(os.path.join("share", package_name, "src"), glob("src/*.py")), | ||
], | ||
install_requires=["setuptools"], | ||
zip_safe=True, | ||
maintainer="Stefan Scherzinger", | ||
maintainer_email="[email protected]", | ||
description="A minimalist dummy for simulating the gripper's communication", | ||
license="GPL-3.0-or-later", | ||
tests_require=["pytest", "coverage"], | ||
entry_points={ | ||
"console_scripts": [], | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters