-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from open-dynamic-robot-initiative/fkloss/rele…
…ase2 Release 2.0.1
- Loading branch information
Showing
7 changed files
with
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*.pyc | ||
build/ | ||
dist/ | ||
*.egg-info | ||
.DS_Store |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
Models of the (Tri-)Finger Robots | ||
================================= | ||
|
||
This package contains XACRO and mesh files for the various Finger and TriFinger | ||
This package contains URDF and mesh files for the various Finger and TriFinger | ||
robots as well as some Python utils to work with the models. | ||
|
||
For each finger type there is a model for a single finger and one for the | ||
TriFinger which simply consists of three times the single finger. | ||
|
||
For more information, see the | ||
[documentation](https://open-dynamic-robot-initiative.github.io/robot_properties_fingers). | ||
|
||
![Screenshots of the different (Tri-)Finger models](doc/images/all_finger_types.jpg) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>robot_properties_fingers</name> | ||
<version>1.2.0</version> | ||
<description>Xacro files and meshes of the (Tri-)Finger robots.</description> | ||
<version>2.0.1</version> | ||
<description>URDF files and meshes of the (Tri-)Finger robots.</description> | ||
<maintainer email="[email protected]">Felix Widmaier</maintainer> | ||
<license>BSD-3-Clause</license> | ||
|
||
|
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 |
---|---|---|
|
@@ -37,9 +37,15 @@ def run(self) -> None: | |
urdf_file.write_text(urdf_content) | ||
|
||
|
||
def load_readme() -> str: | ||
"""Load the README file.""" | ||
this_directory = pathlib.Path(__file__).parent | ||
return (this_directory / "README.md").read_text() | ||
|
||
|
||
setup( | ||
name=package_name, | ||
version="1.2.0", | ||
version="2.0.1", | ||
packages=find_packages(where="src"), | ||
package_dir={"": "src"}, | ||
package_data={"robot_properties_fingers": ["meshes/*.stl", "meshes/**/*.stl"]}, | ||
|
@@ -54,19 +60,27 @@ def run(self) -> None: | |
), | ||
], | ||
install_requires=[ | ||
"setuptools", | ||
"xacro", | ||
"pin", # pinocchio | ||
], | ||
extras_require={"test": ["pytest"]}, | ||
zip_safe=True, | ||
maintainer="Felix Kloss", | ||
maintainer_email="[email protected]", | ||
description="Xacro files and meshes of the (Tri-)Finger robots.", | ||
description="URDF files and meshes of the (Tri-)Finger robots.", | ||
long_description=load_readme(), | ||
long_description_content_type="text/markdown", | ||
url="https://open-dynamic-robot-initiative.github.io/robot_properties_fingers/", | ||
license="BSD-3-Clause", | ||
tests_require=["pytest"], | ||
entry_points={ | ||
"console_scripts": [], | ||
}, | ||
cmdclass={"build_py": CustomBuildCommand}, | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python :: 3", | ||
"Topic :: Scientific/Engineering", | ||
], | ||
) |