-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs changed to sphinx-rtd-theme, initial attempt
- Loading branch information
Showing
22 changed files
with
436 additions
and
160 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
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 |
---|---|---|
|
@@ -4,9 +4,9 @@ pybullet_planning | |
|
||
.. start-badges | ||
.. image:: https://img.shields.io/badge/License-MIT-blue.svg | ||
:target: https://github.com/yijiangh/pybullet_planning/blob/master/LICENSE | ||
:alt: License MIT | ||
.. image:: https://readthedocs.org/projects/pybullet-planning/badge/?version=latest | ||
:target: https://pybullet-planning.readthedocs.io/en/latest/?badge=latest | ||
:alt: Documentation Status | ||
|
||
|
||
.. image:: https://travis-ci.com/yijiangh/pybullet_planning.svg?branch=master | ||
|
@@ -18,78 +18,86 @@ pybullet_planning | |
:target: https://coveralls.io/github/yijiangh/pybullet_planning?branch=master | ||
:alt: Coveralls | ||
|
||
|
||
.. image:: https://img.shields.io/badge/License-MIT-blue.svg | ||
:target: https://github.com/yijiangh/pybullet_planning/blob/master/LICENSE | ||
:alt: License MIT | ||
|
||
.. end-badges | ||
.. Write project description | ||
*pybullet_planning* is a suite of utility functions to facilitate robotic planning related research on the `pybullet <https://github.com/bulletphysics/bullet3>`_ physics simulation engine. | ||
**pybullet_planning** is a suite of utility functions to facilitate robotic planning related research on the `pybullet <https://github.com/bulletphysics/bullet3>`_ physics simulation engine. | ||
|
||
|
||
Main features | ||
------------- | ||
|
||
* feature | ||
* easy-to-use functions to connect with pybullet, tailored for task and motion planning research | ||
* built-in implementations of standard motion planners, including PRM, RRT, biRRT, A* etc. | ||
|
||
**pybullet_planning** runs on Python 2.5+ and 3.x. | ||
|
||
Getting Started | ||
--------------- | ||
|
||
Documentation | ||
------------- | ||
**pybullet_planning** can be installed using ``pip``: | ||
|
||
.. Explain how to access documentation: API, examples, etc. | ||
:: | ||
|
||
.. | ||
.. optional sections: | ||
pip install pybullet_planning | ||
|
||
Requirements | ||
------------ | ||
|
||
.. Write requirements instructions here | ||
.. note:: | ||
|
||
On Windows, you may need to install | ||
`Microsoft Visual C++ 14.0 <https://www.scivision.co/python-windows-visual-c++-14-required/>`_. | ||
|
||
Installation | ||
------------ | ||
|
||
.. Write installation instructions here | ||
Once the installation is completed, you can verify your setup. | ||
Start Python from the command prompt and run the following: | ||
|
||
:: | ||
|
||
Contributing | ||
------------ | ||
>>> import pybullet_planning | ||
|
||
Make sure you setup your local development environment correctly: | ||
|
||
* Clone the `pybullet_planning <https://github.com/yijiangh/pybullet_planning>`_ repository. | ||
* Install development dependencies: | ||
First Steps | ||
--------------- | ||
|
||
:: | ||
* `Documentation <https://pybullet-planning.readthedocs.io>`_ | ||
|
||
Contributing | ||
------------ | ||
|
||
pip install -r requirements-dev.txt | ||
We love contributions! | ||
|
||
**You're ready to start working!** | ||
Check the `Contributor's Guide <./CONTRIBUTING.rst>`_ | ||
for more details. | ||
|
||
During development, use tasks on the | ||
command line to ease recurring operations: | ||
Releasing this project | ||
---------------------- | ||
|
||
* ``invoke clean``: Clean all generated artifacts. | ||
* ``invoke check``: Run various code and documentation style checks. | ||
* ``invoke docs``: Generate documentation. | ||
* ``invoke test``: Run all tests and checks in one swift command. | ||
* ``invoke``: Show available tasks. | ||
Ready to release a new version of **pybullet_planning**? Here's how to do it: | ||
|
||
For more details, check the `Contributor's Guide <CONTRIBUTING.rst>`_. | ||
* We use `semver <https://semver.org/>`_, i.e. we bump versions as follows: | ||
|
||
* ``patch``: bugfixes. | ||
* ``minor``: backwards-compatible features added. | ||
* ``major``: backwards-incompatible changes. | ||
|
||
Releasing this project | ||
---------------------- | ||
* Update the ``CHANGELOG.rst`` with all novelty! | ||
* Ready? Release everything in one command: | ||
|
||
:: | ||
|
||
.. Write releasing instructions here | ||
invoke release [patch|minor|major] | ||
# with -b to bump version | ||
|
||
* Celebrate! 💃 | ||
|
||
.. end of optional sections | ||
.. | ||
|
||
Credits | ||
------------- | ||
|
||
This package was initiated by Caelan Garrett <[email protected]> `@caelan <https://github.com/caelan>`_, | ||
with some maintainence from Yijiang Huang <[email protected]> `@yijiangh <https://github.com/yijiangh>`_. | ||
and other `contributors <./AUTHORS.rst>`_. |
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
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,10 @@ | ||
.. _reference: | ||
|
||
************* | ||
API Reference | ||
************* | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
reference/pybullet_planning |
Oops, something went wrong.