Metadata-Version: 2.0
Name: django-collectstatic-bower
Version: 0.1.2
Summary: Automatically install Bower components using Django's collectstatic
Home-page: https://github.com/nick-allen/django-collectstatic-bower
Author: Nick Allen
Author-email: nick.allen.cse@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Dist: django (>=1.7)
Provides-Extra: test
Requires-Dist: mock; extra == 'test'
Requires-Dist: nose; extra == 'test'
Requires-Dist: tox; extra == 'test'

==========================
django-collectstatic-bower
==========================

Django static file finder that automatically runs bower install and collects components when running Django's collectstatic

Respects .bowerrc directory config when collecting files

Tested on python 2.7 and 3.5

Install
------------------

Pip install package

``pip install django-collectstatic-bower``

Add to ``STATICFILE_FINDERS``::

    STATICFILE_FINDERS = (
      ...
      'django_collectstatic_bower.staticfiles.finders.BowerComponentFinder',
    )

That's it, just collectstatic files like normal

``./manage.py collectstatic``


