webpage:
@(cd ../www; ./generate.py)
-release:
- @(python2.3 setup.py release bdist_egg; python2.4 setup.py release bdist_egg; python2.5 setup.py release bdist_egg sdist)
+release: documentation
+ @(python2.3 setup.py release bdist_egg upload; python2.4 setup.py release bdist_egg upload; python2.5 setup.py release bdist_egg sdist upload)
This will install a Jinja egg in your Python installation's site-packages
directory.
-
From the tarball release
-------------------------
This will install Jinja into your Python installation's site-packages directory.
-
Installing the development version
==================================
in your Python installation's site-packages directory. Every time the command
is run, the sources are updated from Subversion.
+Documentation
+=============
+
+The egg builds include a documentation which is available in the ``docs`` folder
+of the egg. If you're running linux you will find the documentation here::
+
+ file:///usr/lib/python2.X/site-packages/Jinja-Y.Z-py2.X.egg/docs/index.html
+
+where ``X``, ``Y`` and ``Z`` must be replaced by the python / jinja version
+number.
+
.. _download page: http://jinja.pocoo.org/download.html
.. _setuptools: http://peak.telecommunity.com/DevCenter/setuptools
keywords = ['python.templating.engines'],
packages = ['jinja', 'jinja.translators'],
data_files = [
- ('docs', list_files('docs/build')),
- ('docs/txt', list_files('docs/src'))
+ ('docs', list(list_files('docs/build'))),
+ ('docs/txt', list(list_files('docs/src')))
],
platforms = 'any',
extras_require = {'plugin': ['setuptools>=0.6a2']}