1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
CIRpy Documentation
===================
This file provides a quick guide on how to compile the CIRpy documentation.
You will find all the documentation source files in the ``docs/source`` directory, written in reStructuredText format.
All generated documentation is saved to the ``docs/build`` directory.
Requirements
------------
Sphinx is required to compile the documentation. Sphinx also requires docutils and jinja. Install them all using::
pip install Sphinx
Compile the documentation
-------------------------
To compile the documentation and produce HTML output, run the following command from this ``docs`` directory::
make html
Documentation will be generated in HTML format and saved to the ``build/html`` directory. Open the ``index.html`` file
in a browser to view it.
Reset
-----
To clear all generated documentation files and start over from scratch, run::
make clean
This will not delete any of the source files.
|