Metadata-Version: 1.1
Name: gears-clean-css
Version: 0.1.2
Summary: clean-css compressor for Gears
Home-page: https://github.com/gears/gears-clean-css
Author: Mike Yumatov
Author-email: mike@yumatov.org
License: ISC
Description: gears-clean-css
        ===============
        
        clean-css_ compressor for Gears_. This package already includes the clean-css
        source code for you, so you don't need to worry about installing it yourself.
        
        Bundled clean-css version: **0.6.0**
        
        Installation
        ------------
        
        Install ``gears-clean-css`` with pip::
        
            $ pip install gears-clean-css
        
        
        Requirements
        ------------
        
        ``gears-clean-css`` requires node.js_ to be installed in your system.
        
        
        Usage
        -----
        
        Add ``gears_clean_css.CleanCSSCompressor`` to ``environment``'s compressors
        registry::
        
            from gears_clean_css import CleanCSSCompressor
            environment.compressors.register('text/css', CleanCSSCompressor.as_handler())
        
        If you use Gears in your Django project, add this code to its settings::
        
            GEARS_COMPRESSORS = {
                'text/css': 'gears_clean_css.CleanCSSCompressor',
            }
        
        .. _clean-css: https://github.com/GoalSmashers/clean-css
        .. _Gears: https://github.com/gears/gears
        .. _node.js: http://nodejs.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: ISC License (ISCL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
