Metadata-Version: 1.1
Name: pyramid-webpack
Version: 0.1.2
Summary: Pyramid extension for managing assets with Webpack.
Home-page: http://github.com/stevearc/pyramid_webpack
Author: Steven Arcangeli
Author-email: stevearc@stevearc.com
License: MIT
Description: Pyramid Webpack
        ===============
        :Build: |build|_ |coverage|_
        :Documentation: http://pyramid-webpack.readthedocs.io/
        :Downloads: http://pypi.python.org/pypi/pyramid_webpack
        :Source: https://github.com/stevearc/pyramid_webpack
        
        .. |build| image:: https://travis-ci.org/stevearc/pyramid_webpack.png?branch=master
        .. _build: https://travis-ci.org/stevearc/pyramid_webpack
        .. |coverage| image:: https://coveralls.io/repos/github/stevearc/pyramid_webpack/badge.svg?branch=master
        .. _coverage: https://coveralls.io/github/stevearc/pyramid_webpack?branch=master
        
        A Pyramid extension for managing assets with Webpack.
        
        Quick Start
        -----------
        
        Install `cookiecutter <https://cookiecutter.readthedocs.io/en/latest/installation.html>`__
        
        Create a new project::
        
          $ cookiecutter gh:stevearc/pyramid-cookiecutter-webpack
        
        Install and set up necessary packages::
        
          $ cd <your project>
          $ virtualenv env
          $ source env/bin/activate
          $ pip install --upgrade pip
          $ pip install -e .
          $ npm install
        
        Start the webpack build::
        
          $ npm run watch
        
        In a separate terminal, start the Pyramid server::
        
          $ pserve --reload development.ini
        
        
        Changelog
        =========
        
        0.1.2 - 2017/9/3
        ----------------
        * Fix `#4 <https://github.com/stevearc/pyramid_webpack/issues/4>`__: Issue with Jinja2 rendering
        * Created a `cookiecutter <https://cookiecutter.readthedocs.io/en/latest/>`__ to make it easier to get started: https://github.com/stevearc/pyramid-cookiecutter-webpack
        
        0.1.1 - 2016/10/27
        ------------------
        * Add cache_max_age config option
        
        0.1.0 - 2016/10/23
        ------------------
        * Initial release
        
Keywords: pyramid webpack assets
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pyramid
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
