Metadata-Version: 2.0
Name: jinja2-webpack
Version: 0.2.0
Summary: Integration of webpack with jinja2
Home-page: https://github.com/JDeuce/python-jinja2-webpack
Author: Josh Jaques
Author-email: jdeuce@jdeuce.net
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
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: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Dist: Jinja2

========
Overview
========



Integration of webpack with jinja2

* Free software: BSD license

Description
===========

Plugin for jinja2 which enables you to reference assets generated by webpack in your Jinja2 templates, as well as an optional scan feature which allows you to push references to assets from your Jinja2 templates back into webpack for it to build them.

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

::

    pip install jinja2-webpack

Documentation
=============

https://jinja2-webpack.readthedocs.io/

Development
===========

To run the all tests run::

    tox

Note, to combine the coverage data from all the tox environments run:

.. list-table::
    :widths: 10 90
    :stub-columns: 1

    - - Windows
      - ::

            set PYTEST_ADDOPTS=--cov-append
            tox

    - - Other
      - ::

            PYTEST_ADDOPTS=--cov-append tox


Changelog
=========
0.2.0 (2019-07-19)
------------------
* Fix issue with using a root path of '/' and ''

0.1.4 (2017-06-03)
------------------
* Separate jinja2_webpack.pyramid into pyramid_jinja2_webpack

0.1.0 (2017-05-28)
------------------

* First release on PyPI.


