[svn] again jinja setup.py update. works now
[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 import os
50 import ez_setup
51 ez_setup.use_setuptools()
52 from setuptools import setup
53
54
55 def list_files(path):
56     for fn in os.listdir(path):
57         if fn.startswith('.'):
58             continue
59         fn = os.path.join(path, fn)
60         if os.path.isfile(fn):
61             yield fn
62
63
64 setup(
65     name = 'Jinja',
66     version = '1.0',
67     url = 'http://jinja.pocoo.org/',
68     license = 'BSD',
69     author = 'Armin Ronacher',
70     author_email = 'armin.ronacher@active-4.com',
71     description = 'A small but fast and easy to use stand-alone template '
72                   'engine written in pure python.',
73     long_description = __doc__,
74     # jinja is egg safe. But because we distribute the documentation
75     # in form of html and txt files it's a better idea to extract the files
76     zip_safe = False,
77     classifiers = [
78         'Development Status :: 5 - Production/Stable',
79         'Environment :: Web Environment',
80         'Intended Audience :: Developers',
81         'License :: OSI Approved :: BSD License',
82         'Operating System :: OS Independent',
83         'Programming Language :: Python',
84         'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
85         'Topic :: Software Development :: Libraries :: Python Modules',
86         'Topic :: Text Processing :: Markup :: HTML'
87     ],
88     keywords = ['python.templating.engines'],
89     packages = ['jinja', 'jinja.translators'],
90     data_files = [
91         ('docs', list_files('docs/build')),
92         ('docs/txt', list_files('docs/src'))
93     ],
94     platforms = 'any',
95     extras_require = {'plugin': ['setuptools>=0.6a2']}
96 )