[svn] FILTERS!!111!!!111oneoneone
[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 '
18                   'engine written in pure python.',
19     zip_safe = True,
20     classifiers = [
21         'Development Status :: 5 - Production/Stable',
22         'Environment :: Web Environment',
23         'Intended Audience :: Developers',
24         'License :: OSI Approved :: BSD License',
25         'Operating System :: OS Independent',
26         'Programming Language :: Python',
27         'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
28         'Topic :: Software Development :: Libraries :: Python Modules',
29         'Topic :: Text Processing :: Markup :: HTML'
30     ],
31     keywords = ['python.templating.engines'],
32     packages = ['jinja', 'jinja.translators'],
33     extras_require = {'plugin': ['setuptools>=0.6a2']},
34     entry_points='''
35     [python.templating.engines]
36     jinja = jinja.bakerplugin:JinjaPlugin[plugin]
37     '''
38 )