Metadata-Version: 2.0
Name: django-pipeline-csscompressor
Version: 0.1
Summary: A django-pipeline compressor to compress css files using csscompressor
Home-page: https://github.com/mysociety/django-pipeline-csscompressor
Author: mySociety
Author-email: programmers@mysociety.org
License: LICENSE.txt
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Requires-Dist: django-pipeline (>=1.6.8)
Requires-Dist: csscompressor (>=0.9.4)

django-pipeline-csscompressor
==============

A https://github.com/jazzband/django-pipeline css compressor
to compress css files using https://github.com/sprymix/csscompressor.

This allows you to use django-pipeline to compress CSS files without having to
rely on an external binary like YUI compressor, Uglify, etc.

Installation
------------

    pip install django-pipeline-csscompressor

Configure django-pipeline to use django_pipeline_csscompressor.CssCompressor
as its `CSS_COMPRESSOR` in your `settings.py`:

    CSS_COMPRESSOR = 'django_pipeline_csscompressor.CssCompressor '


