Metadata-Version: 1.0
Name: Lean
Version: 0.2
Summary: Generic interface to multiple Python template engines - Tilt for Python
Home-page: https://github.com/OiNutter/lean
Author: Will McKenzie
Author-email: will@oinutter.co.uk
License: MIT License
Download-URL: https://github.com/OiNutter/lean/tarball/master
Description: Lean
        ====
        
        Lean is intended to provide a consistent interface to various python
        templating languages. Code wise it is a port of
        `Tilt <https://github.com/rtomayko/tilt>`_ for Ruby.
        
        At the moment it just has support for CoffeeScript and Scss as those are
        what I need but I will be adding support for as many other python
        templating languages as I can. I will also be trying to add support for
        the compiled template functionality that Tilt has, just as soon as I can
        understand how it works and how to do it in Python.
        
        If you want to get involved and help add support for other templating
        languages then please, get stuck in!
        
        Installation
        ------------
        
        ::
        
            $ pip install lean
        
        Basic Usage
        -----------
        
        ::
        
            from lean import Lean
        
            tmpl = Lean.load('blah.coffee')
            tmpl.render()
        
        License
        -------
        
        Copyright 2012 Will McKenzie
        
        Lean is licensed under the MIT License, please see the LICENSE file for
        more details.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
