Metadata-Version: 1.0
Name: gears-less
Version: 0.1.1
Summary: LESS compiler for Gears
Home-page: https://github.com/gears/gears-less
Author: Mike Yumatov
Author-email: mike@yumatov.org
License: ISC
Description: gears-less
        ==================
        
        LESS_ compiler for Gears_. This package already includes the LESS source
        code for you, so you don't need to worry about installing it yourself.
        
        Bundled LESS version: **1.3.0**
        
        Installation
        ------------
        
        Install ``gears-less`` with pip::
        
            $ pip install gears-less
        
        
        Requirements
        ------------
        
        ``gears-less`` requires node.js_ to be installed in your system.
        
        
        Usage
        -----
        
        Add ``gears_less.LESSCompiler`` to ``environment``'s compilers registry::
        
            from gears_less import LESSCompiler
            environment.compilers.register('.less', LESSCompiler.as_handler())
        
        If you use Gears in your Django project, add this code to its settings::
        
            GEARS_COMPILERS = {
                '.less': 'gears_less.LESSCompiler',
            }
        
        .. _LESS: http://lesscss.org/
        .. _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
