Metadata-Version: 1.1
Name: djed.static
Version: 0.1
Summary: Integration of BowerStatic into Pyramid for managing static resources with Bower
Home-page: https://github.com/djedproject/djed.static
Author: Djed developers
Author-email: djedproject@googlegroups.com
License: ISC License (ISCL)
Description: ===========
        djed.static
        ===========
        
        .. image:: https://travis-ci.org/djedproject/djed.static.png?branch=master
           :target: https://travis-ci.org/djedproject/djed.static
        
        djed.static integrates BowerStatic_ into the `Pyramid Web Framework`_.
        BowerStatic is a WSGI component that can serve static resources from
        front-end packages (JavaScript, CSS) that you install through the Bower_
        package manager.
        
        .. _Bower: http://bower.io
        
        .. _BowerStatic: https://bowerstatic.readthedocs.org
        
        .. _Pyramid Web Framework: https://pyramid.readthedocs.org
        
        Getting Started
        ===============
        
        Install the package into your python environment::
        
            pip install djed.static
        
        Include it in your Pyramid application::
        
            config.include('djed.static')
        
        Initialize it with a directory that contains the Bower packages::
        
            config.init_bower_components('myapp:static/bower_components')
        
        If desired, add local Bower packages::
        
            config.add_bower_component('myapp:static/mycomponent')
        
        Include required Bower packages on your page. You can do this in templates or
        somewhere else in your code::
        
            request.include('bootstrap')
        
        License
        =======
        
        djed.static is offered under the `ISC license`_.
        
        .. _ISC license: http://choosealicense.com/licenses/isc/
        
        
        Change History
        ==============
        
        0.1 (2015-01-06)
        ----------------
        
        -  Initial release
        
Keywords: web pyramid pylons bower static bowerstatic
Platform: UNKNOWN
Classifier: Framework :: Pyramid
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
