# -*- coding: utf-8 -*- try: import ez_setup ez_setup.use_setuptools() except ImportError: pass from setuptools import setup setup( name = 'Jinja', version = '0.9', url = 'http://wsgiarea.pocoo.org/jinja/', license = 'BSD', author = 'Armin Ronacher', author_email = 'armin.ronacher@active-4.com', description = 'A small but fast und easy to use stand-alone template engine written in pure python.', long_description = '''\ Jinja is a small but very fast und easy to use stand-alone template engine written in pure python. Since version 0.6 it uses a new parser that increases parsing performance a lot by caching the nodelists on the harddisk if wanted. It includes multiple template inheritance and other features like simple value escaping... Template Syntax =============== This is a small example template in which you can see, how jinja's syntax looks like::