Metadata-Version: 1.1
Name: pyramid_mustache
Version: 0.2.1
Summary: pyramid_mustache
Home-page: http://github.com/eventray/pyramid_mustache
Author: John Anderson
Author-email: sontek@gmail.com
License: UNKNOWN
Description: pyramid_mustache
        ================
        
        Extensions for pyramid to use mustache as the rendering engine
        
        In your main of __init__.py:
        
            config.add_renderer(
                name='.html'
                , factory='pyramid_mustache.MustacheRendererFactory'
            )
        
        In your setup.py's message_extractors:
        
            ('templates/**.mustache', 'pyramid_mustache.extract_mustache', None),
                    
        
        
        
Keywords: web pyramid pylons
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Framework :: Pylons
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
