Skip to content

Commit eee5059

Browse files
Release v0.1.0
1 parent e6852f0 commit eee5059

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.coverage
22
.tox
33
__pycache__
4+
dist/
45
htmlcov/

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Unreleased
5+
## [0.1.0] - 2022/09/05
66

77
### New robot descriptions
88

9+
This release adds 33 robot descriptions:
10+
911
- A1
1012
- Aliengo
1113
- Allegro Hand

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![PyPI version](https://img.shields.io/pypi/v/robot_descriptions)](https://pypi.org/project/robot_descriptions/)
44

5-
Import open source robot descriptions as Python modules. The wrapper automatically downloads and cache files at first import. [Awesome Robot Descriptions](https://github.com/stephane-caron/awesome-robot-descriptions) are available.
5+
Import open source robot descriptions as Python modules. The wrapper automatically downloads and cache files at first import. Most [Awesome Robot Descriptions](https://github.com/stephane-caron/awesome-robot-descriptions) are available.
66

77
## Installation
88

@@ -43,6 +43,14 @@ The import will automatically download the robot description if you don't have i
4343

4444
Some robot descriptions include additional fields. For instance, the ``iiwa_description`` exports ``URDF_PATH_POLYTOPE_COLLISION`` with more detailed collision meshes.
4545

46+
## Command line tool
47+
48+
The command line tool can be used to display any of the robot descriptions below. For example:
49+
50+
```console
51+
robot_descriptions show solo_description
52+
```
53+
4654
## Descriptions
4755

4856
Available robot descriptions ([gallery](https://github.com/stephane-caron/awesome-robot-descriptions#gallery)) currently include:

robot_descriptions/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# limitations under the License.
1717

1818
"""
19-
Import open-source robot models like Python modules.
19+
Import open source robot description as Python modules.
2020
"""
2121

22-
__version__ = "0.4.0"
22+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)