blob: 48e1a5e27a0263293f536b01d4cc1f333fb3046c [file] [log] [blame]
Armin Ronacherde478f62007-02-28 22:35:04 +01001# -*- coding: utf-8 -*-
2try:
3 import ez_setup
4 ez_setup.use_setuptools()
5except ImportError:
6 pass
7from setuptools import setup
8
9
10setup(
11 name = 'Jinja',
Armin Ronacher8ebf1f92007-03-03 11:22:18 +010012 version = '1.0',
13 url = 'http://jinja.pocoo.org/',
Armin Ronacherde478f62007-02-28 22:35:04 +010014 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.',
Armin Ronacher8ebf1f92007-03-03 11:22:18 +010018 zip_safe = True,
Armin Ronacherde478f62007-02-28 22:35:04 +010019 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',
Armin Ronacher8ebf1f92007-03-03 11:22:18 +010026 '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 '''
Armin Ronacherde478f62007-02-28 22:35:04 +010037)