Metadata-Version: 2.1
Name: panflute
Version: 1.11.2
Summary: Pythonic Pandoc filters
Home-page: https://github.com/sergiocorreia/panflute
Author: Sergio Correia
Author-email: sergio.correia@gmail.com
License: BSD3
Keywords: pandoc pandocfilters markdown latex
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Text Processing :: Filters
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: pyyaml
Requires-Dist: future
Requires-Dist: shutilwhich
Requires-Dist: click
Provides-Extra: pypi
Requires-Dist: docutils ; extra == 'pypi'
Requires-Dist: Pygments ; extra == 'pypi'
Provides-Extra: test
Requires-Dist: pandocfilters ; extra == 'test'
Requires-Dist: configparser ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: future ; extra == 'test'

:Date:   January 21, 2019

.. contents::
   :depth: 3
..

Panflute: Pythonic Pandoc Filters
=================================

|Python version| |PyPI version| |Development Status| |Build Status|

`panflute <http://scorreia.com/software/panflute/>`__ is a Python
package that makes creating Pandoc filters fun.

For a detailed user guide, documentation, and installation instructions,
see http://scorreia.com/software/panflute/. For examples that you can
use as starting points, check the `examples
repo <https://github.com/sergiocorreia/panflute-filters/tree/master/filters>`__,
the `sample
template <https://raw.githubusercontent.com/sergiocorreia/panflute/master/docs/source/_static/template.py>`__,
or `this github
search <https://github.com/search?o=desc&q=%22import+panflute%22+OR+%22from+panflute%22+created%3A%3E2016-01-01+language%3APython+extension%3Apy&s=indexed&type=Code&utf8=%E2%9C%93>`__.
If you want to contribute, head `here </CONTRIBUTING.md>`__.

Install
-------

To install panflute, open the command line and type:

.. code:: bash

   pip install panflute

Python 2.7+, 3.3+, PyPy, and PyPy3 are supported.

Uninstall
---------

.. code:: bash

   pip uninstall panflute

Dev Install
-----------

After cloning the repo and opening the panflute folder:

``python setup.py install``
   installs the package locally
``python setup.py develop``
   installs locally with a symlink so changes are automatically updated

In addition, if you use python2, you need to pasteurize the code before
running tests. In this directory, Run

.. code:: bash

   # install pasteurize if you didn't have it yet
   pip2 install -U future
   pasteurize -wnj 4 .

Contributing
------------

Feel free to submit push requests. For consistency, code should comply
with `pep8 <https://pypi.python.org/pypi/pep8>`__ (as long as its
reasonable), and with the style guides by
[@kennethreitz](http://docs.python-guide.org/en/latest/writing/style/)
and `google <http://google.github.io/styleguide/pyguide.html>`__. Read
more `here </CONTRIBUTING.md>`__.

License
-------

BSD3 license (following ``pandocfilters`` by @jgm).

.. |Python version| image:: https://img.shields.io/pypi/pyversions/panflute.svg
   :target: https://pypi.python.org/pypi/panflute/
.. |PyPI version| image:: https://img.shields.io/pypi/v/panflute.svg
   :target: https://pypi.python.org/pypi/panflute/
.. |Development Status| image:: https://img.shields.io/pypi/status/panflute.svg
   :target: https://pypi.python.org/pypi/panflute/
.. |Build Status| image:: https://travis-ci.org/sergiocorreia/panflute.svg?branch=master
   :target: https://travis-ci.org/sergiocorreia/panflute


