Metadata-Version: 1.1
Name: sphinxcontrib.divparams
Version: 0.0.3
Summary: Converts parameter tables in HTML documentation generated by Sphinx into <div>'s.
Home-page: https://github.com/rvlm/rvlm-paraform
Author: Pavel Kretov
Author-email: firegurafiku@gmail.com
License: MIT
Description: Parameters list as `<div>`'s in HTML generated by Sphinx
        ========================================================
        
        This package is a simple Sphinx extension named `divparams`, which was created
        to bring another style to the lists of function parameters and return values in
        HTML files generated by Sphinx.
        
        To make use of the dirty hack this extension provides, first, install its
        package from PyPI:
        
        .. code-block:: bash
        
            $ sudo pip install sphinxcontrib.divparams
        
        and then import it into your Sphinx's `conf.py` and add its parameters to the
        lists of extensions, templates directories, and static directories:
        
        .. code-block:: python
        
            import sphinxcontrib.divparams as divparams
            extensions       = [..., 'sphinxcontrib.divparams']
            templates_path   = [..., divparams.get_templates_path()]
            html_static_path = [..., divparams.get_static_path()]
        
            divparams_enable_postprocessing = True
        
        See following links for more information:
        
        - **Repository:** https://github.com/firegurafiku/sphinxcontrib-divparams
        - **Documentation:** https://pythonhosted.org/sphinxcontrib.divparams/
        - **Travis-CI:** https://travis-ci.org/firegurafiku/sphinxcontrib-divparams
        - **Original SO question:** http://stackoverflow.com/questions/33296824
        
Keywords: helpers
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Documentation
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Requires: numpy
