Metadata-Version: 2.0
Name: sphinx-glpi-theme
Version: 0.3
Summary: GLPI theme for Sphinx
Home-page: https://github.com/glpi-project/sphinx_glpi_theme/
Author: Johan Cwiklinski
Author-email: jcwiklinski@teclib.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Documentation

.. _readthedocs.org: http://www.readthedocs.org

**************************
GLPI Sphinx Theme
**************************

.. contents::

GLPI Sphinx theme based on readthedocs.org_ one.


Installation
============

Via package
-----------

Download the package or add it to your ``requirements.txt`` file:

.. code:: bash

   pip install sphinx_glpi_theme

In your ``conf.py`` file:

.. code:: python

    import sphinx_glpi_theme

    html_theme = "glpi"

    html_theme_path = [sphinx_glpi_theme.get_html_themes_path()]

Via git or download
-------------------

Symlink or subtree the ``sphinx_glpi_theme/glpi`` repository into your documentation at
``docs/_themes/sphinx_glpi_theme`` then add the following two settings to your Sphinx
conf.py file:

.. code:: python

    html_theme = "sphinx_glpi_theme"
    html_theme_path = ["_themes", ]


