Files
CoolProp/Web/develop/documentation.rst
2014-08-26 19:47:41 +02:00

41 lines
1.2 KiB
ReStructuredText

.. _developer_documentation:
*************
Documentation
*************
Build Sphinx documentation
--------------------------
1. Check out the sources in the CoolProp/Web folder::
git clone https://github.com/CoolProp/CoolProp --recursive
2. Make a virtualenv::
virtualenv ~/env/py27
source ~/env/py27/bin/activate # Turn on this virtual env, should see (py27) in your command shell next to the prompt to tell you that environment is active
3. Then install prerequisites into this virtualenv::
pip install Cython
pip install CoolProp sphinx sphinxcontrib-doxylink sphinxcontrib-napoleon cloud-sptheme ipython matplotlib numpy scipy
4. To build the documentation, go into the CoolProp/Web folder and run::
make html
5. Move the generated docs in ``_build`` to wherever you want
Build Doxygen documentation
---------------------------
All the configuration is done in the ``Doxyfile`` file.
1. If you don't have doxygen, install it from `doxygen downloads <http://www.stack.nl/~dimitri/doxygen/download.html>`. Or on linux a ``sudo apt-get install doxygen`` should do it.
2. Simply fire up a shell in the root of the repo, and type::
doxygen Doxyfile