├── .coveragerc ├── .covio.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── README.rst ├── djangobower ├── __init__.py ├── bower.py ├── conf.py ├── context_processors.py ├── exceptions.py ├── finders.py ├── management │ ├── __init__.py │ ├── base.py │ └── commands │ │ ├── __init__.py │ │ ├── bower.py │ │ ├── bower_freeze.py │ │ └── bower_install.py ├── models.py ├── shortcuts.py ├── templatetags │ ├── __init__.py │ └── bower.py ├── test_settings.py └── tests │ ├── __init__.py │ ├── base.py │ ├── test_bower.py │ └── test_finders.py ├── docs ├── Makefile ├── conf.py ├── example.rst ├── index.rst ├── installation.rst ├── tests.rst └── usage.rst ├── example ├── components │ └── .gitkeep ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── static │ └── .gitkeep └── templates │ └── index.html ├── requirements_dev.txt ├── runtests.py ├── setup.cfg └── setup.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | include = djangobower* 3 | -------------------------------------------------------------------------------- /.covio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/.covio.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/README.rst -------------------------------------------------------------------------------- /djangobower/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobower/bower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/bower.py -------------------------------------------------------------------------------- /djangobower/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/conf.py -------------------------------------------------------------------------------- /djangobower/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/context_processors.py -------------------------------------------------------------------------------- /djangobower/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/exceptions.py -------------------------------------------------------------------------------- /djangobower/finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/finders.py -------------------------------------------------------------------------------- /djangobower/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobower/management/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/management/base.py -------------------------------------------------------------------------------- /djangobower/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobower/management/commands/bower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/management/commands/bower.py -------------------------------------------------------------------------------- /djangobower/management/commands/bower_freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/management/commands/bower_freeze.py -------------------------------------------------------------------------------- /djangobower/management/commands/bower_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/management/commands/bower_install.py -------------------------------------------------------------------------------- /djangobower/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangobower/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/shortcuts.py -------------------------------------------------------------------------------- /djangobower/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /djangobower/templatetags/bower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/templatetags/bower.py -------------------------------------------------------------------------------- /djangobower/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/test_settings.py -------------------------------------------------------------------------------- /djangobower/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/tests/__init__.py -------------------------------------------------------------------------------- /djangobower/tests/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/tests/base.py -------------------------------------------------------------------------------- /djangobower/tests/test_bower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/tests/test_bower.py -------------------------------------------------------------------------------- /djangobower/tests/test_finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/djangobower/tests/test_finders.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/example.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/tests.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/tests.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /example/components/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/example/templates/index.html -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- 1 | mock 2 | coverage 3 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nvbn/django-bower/HEAD/setup.py --------------------------------------------------------------------------------