[svn] updated setup.py file for jinja 1.0 release
[jinja2.git] / setup.py
1 # -*- coding: utf-8 -*-
2 """
3 Jinja
4 =====
5
6 Jinja is a `sandboxed`_ template engine written in pure Python. It provides a
7 `Django`_ like non-XML syntax and compiles templates into executable python code.
8 It's basically a combination of Django templates and python code.
9
10 Nutshell
11 --------
12
13 Here a small example of a Jinja template::
14
15     {% extends 'base.html' %}
16     {% block title %}Memberlist{% endblock %}
17     {% block content %}
18       <ul>
19       {% for user in users %}
20         <li><a href="{{ user.url|e }}">{{ user.username|e }}</a></li>
21       {% endfor %}
22       </ul>
23     {% endblock %}
24
25 Philosophy
26 ----------
27
28 Application logic is for the controller but don't try to make the life for the
29 template designer too hard by giving him too few functionality.
30
31 For more informations visit the new `jinja webpage`_ and `documentation`_.
32
33 Note
34 ----
35
36 This is the Jinja 1.0 release which is completely incompatible with the old
37 "pre 1.0" branch. The old branch will still receive security updates and
38 bugfixes but the 1.0 branch will be the only version that receives support.
39
40 If you have an application that uses Jinja 0.9 and won't be updated in the
41 near future the best idea is to ship a Jinja 0.9 checkout together with
42 the application.
43
44 .. _sandboxed: http://en.wikipedia.org/wiki/Sandbox_%28computer_security%29
45 .. _Django: http://www.djangoproject.com/
46 .. _jinja webpage: http://jinja.pocoo.org/
47 .. _documentation: http://jinja.pocoo.org/documentation/index.html
48 """
49 try:
50     import ez_setup
51     ez_setup.use_setuptools()
52 except ImportError:
53     pass
54 from setuptools import setup
55
56 setup(
57     name = 'Jinja',
58     version = '1.0',
59     url = 'http://jinja.pocoo.org/',
60     license = 'BSD',
61     author = 'Armin Ronacher',
62     author_email = 'armin.ronacher@active-4.com',
63     description = 'A small but fast and easy to use stand-alone template '
64                   'engine written in pure python.',
65     long_description = __doc__,
66     zip_safe = True,
67     classifiers = [
68         'Development Status :: 5 - Production/Stable',
69         'Environment :: Web Environment',
70         'Intended Audience :: Developers',
71         'License :: OSI Approved :: BSD License',
72         'Operating System :: OS Independent',
73         'Programming Language :: Python',
74         'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
75         'Topic :: Software Development :: Libraries :: Python Modules',
76         'Topic :: Text Processing :: Markup :: HTML'
77     ],
78     keywords = ['python.templating.engines'],
79     packages = ['jinja', 'jinja.translators'],
80     extras_require = {'plugin': ['setuptools>=0.6a2']},
81 )