2008-03-18 14:37:05 -05:00
|
|
|
=================
|
|
|
|
README for Sphinx
|
|
|
|
=================
|
|
|
|
|
2014-09-20 14:09:33 -05:00
|
|
|
This is the Sphinx documentation generator, see http://sphinx-doc.org/.
|
|
|
|
|
|
|
|
|
2008-03-18 14:37:05 -05:00
|
|
|
Installing
|
|
|
|
==========
|
|
|
|
|
|
|
|
Use ``setup.py``::
|
|
|
|
|
|
|
|
python setup.py build
|
|
|
|
sudo python setup.py install
|
|
|
|
|
|
|
|
|
|
|
|
Reading the docs
|
|
|
|
================
|
|
|
|
|
|
|
|
After installing::
|
|
|
|
|
|
|
|
cd doc
|
2014-09-20 14:09:33 -05:00
|
|
|
make html
|
2008-11-24 13:33:58 -06:00
|
|
|
|
|
|
|
Then, direct your browser to ``_build/html/index.html``.
|
2008-03-18 14:37:05 -05:00
|
|
|
|
2012-11-04 04:28:12 -06:00
|
|
|
Or read them online at <http://sphinx-doc.org/>.
|
2008-03-18 14:37:05 -05:00
|
|
|
|
|
|
|
|
2010-07-28 12:49:06 -05:00
|
|
|
Testing
|
|
|
|
=======
|
|
|
|
|
|
|
|
To run the tests with the interpreter available as ``python``, use::
|
|
|
|
|
|
|
|
make test
|
|
|
|
|
|
|
|
If you want to use a different interpreter, e.g. ``python3``, use::
|
|
|
|
|
|
|
|
PYTHON=python3 make test
|
|
|
|
|
2014-09-20 14:06:44 -05:00
|
|
|
Continuous testing runs on drone.io:
|
|
|
|
|
|
|
|
.. image:: https://drone.io/bitbucket.org/birkenfeld/sphinx/status.png
|
|
|
|
:target: https://drone.io/bitbucket.org/birkenfeld/sphinx/
|
|
|
|
|
2010-07-28 12:49:06 -05:00
|
|
|
|
2008-03-18 14:37:05 -05:00
|
|
|
Contributing
|
|
|
|
============
|
|
|
|
|
2014-08-30 10:02:01 -05:00
|
|
|
#. Check for open issues or open a fresh issue to start a discussion around a
|
2014-08-30 10:38:11 -05:00
|
|
|
feature idea or a bug. There are Non Assigned issues:
|
|
|
|
https://bitbucket.org/birkenfeld/sphinx/issues?status=new&status=open&responsible=
|
2014-08-30 10:02:01 -05:00
|
|
|
#. If you feel uncomfortable or uncertain about an issue or your changes, feel
|
|
|
|
free to email sphinx-dev@googlegroups.com.
|
2014-08-30 10:38:11 -05:00
|
|
|
#. Fork the repository on Bitbucket https://bitbucket.org/birkenfeld/sphinx
|
|
|
|
to start making your changes to the **default** branch for next major
|
|
|
|
version, or **stable** branch for next minor version.
|
2014-08-30 10:02:01 -05:00
|
|
|
#. Write a test which shows that the bug was fixed or that the feature works
|
|
|
|
as expected.
|
|
|
|
#. Send a pull request and bug the maintainer until it gets merged and
|
2014-08-30 10:38:11 -05:00
|
|
|
published. Make sure to add yourself to AUTHORS
|
|
|
|
<https://bitbucket.org/birkenfeld/sphinx/src/tip/AUTHORS> and the change to
|
|
|
|
CHANGES <https://bitbucket.org/birkenfeld/sphinx/src/tip/CHANGES>.
|