Installation
============
PPPACK is available on `PyPI `_, so use pip to install the package as:
.. code-block:: bash
pip install pppack
To fork a development version from GitHub, use:
.. code-block:: bash
git clone git://github.com/ndarmage/pppack
Then, an editable install (by ``pip install -e pppack``) is suggested to work in a collaborative framework.
To build only the Fortran extension in the package directory, execute:
.. code-block:: bash
python setup.py build_src build_ext --inplace --fcompiler=gnu95
By altering the input of the argument ``--fcompiler``, user can choose a different Fortran compiler for building the extension.
The documentation can be generated by Sphinx in ``docs/``, for instance by ``make html`` and serving the page ``docs/_build/html/index.html`` in any browser. If no git repository is cloned, refer to `ReadTheDocs.org `_ for the documentation.
Frequently Asked Questions
==========================
.. todo:: ... as they come, we'll treat them!
License
=======
Some FORTRAN libraries, as chebyshev_interp_1d for instance, were distributed under LGPL terms. They keep its original license.
The MIT license applies to all other components of the package.
.. include:: ../../LICENSE.txt
:literal: