Skip to content

Commit

Permalink
Split out RTB data
Browse files Browse the repository at this point in the history
  • Loading branch information
petercorke committed Feb 28, 2021
1 parent 9f02739 commit 411ad82
Show file tree
Hide file tree
Showing 720 changed files with 130 additions and 0 deletions.
22 changes: 22 additions & 0 deletions rtb-data/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
.FORCE:

BLUE=\033[0;34m
BLACK=\033[0;30m

help:
@echo " make dist - build dist files"
@echo " make upload - upload to PyPI"
@echo " make clean - remove dist and docs build files"
@echo " make help - this message$(BLACK)"


dist: .FORCE
python setup.py sdist

upload: .FORCE
twine upload dist/*

clean: .FORCE
-rm -r *.egg-info
-rm -r dist

25 changes: 25 additions & 0 deletions rtb-data/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Robotics Toolbox for Python - data files

This package includes large data files associated with the Robotics Toolbox for Python (RTB-P).

## Rationale

The data files are provided as a separate package to work around disk space limitations on PyPI. Including these data with the RTB code adds nearly 200MB to every release, which will blow the PyPI limit quite quickly.
Since the data doesn't change very much, it's mostly robot models and a few data sets, it makes sense for it to be a standalone package.

## Package contents

| Folder | Purpose |
| ------ | ------------------------------ |
| data | miscellaneous STL files and data sets |
| meshes | STL mesh models for DH robots |
| xacro | URDF/xacro models for URDF robots |

## Installing the package

You don't need to explicitly install this package, it happens automatically when you when you install RTB-P

```
pip install roboticstoolbox-python
```
since it is a dependency.
Empty file added rtb-data/rtbdata/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 411ad82

Please sign in to comment.