diff --git a/docs/contributing.rst b/docs/contributing.rst index d2bdbcca..04153877 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -99,6 +99,22 @@ update the issue tracker with your feedback. Thanks again! +How to build the documentation ? +===================================== + +The documentation is using `sphinx `_ and +its source is located inside the `docs folder +`_. + +Install doc dependencies (within the virtualenv, if any):: + + pip install -r docs/requirements.txt + +And to produce html doc in `docs/_output` folder:: + + cd docs/ + make html + How to release? ===============