[svn] doc update, setup.py update, added turbogears plugin
[jinja2.git] / setup.py
1 # -*- coding: utf-8 -*-
2 try:
3     import ez_setup
4     ez_setup.use_setuptools()
5 except ImportError:
6     pass
7 from setuptools import setup
8
9
10 setup(
11     name = 'Jinja',
12     version = '1.0',
13     url = 'http://jinja.pocoo.org/',
14     license = 'BSD',
15     author = 'Armin Ronacher',
16     author_email = 'armin.ronacher@active-4.com',
17     description = 'A small but fast and easy to use stand-alone template engine written in pure python.',
18     zip_safe = True,
19     classifiers = [
20         'Development Status :: 5 - Production/Stable',
21         'Environment :: Web Environment',
22         'Intended Audience :: Developers',
23         'License :: OSI Approved :: BSD License',
24         'Operating System :: OS Independent',
25         'Programming Language :: Python',
26         'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
27         'Topic :: Software Development :: Libraries :: Python Modules',
28         'Topic :: Text Processing :: Markup :: HTML'
29     ],
30     keywords = ['python.templating.engines'],
31     packages = ['jinja'],
32     extras_require = {'plugin': ['setuptools>=0.6a2']},
33     entry_points='''
34     [python.templating.engines]
35     jinja = jinja.bakerplugin:JinjaPlugin[plugin]
36     '''
37 )