+++ /dev/null
-#
-# Jinja Makefile
-# ~~~~~~~~~~~~~~
-#
-# Shortcuts for various tasks.
-#
-# :copyright: 2007 by Armin Ronacher.
-# :license: BSD, see LICENSE for more details.
-#
-
-test:
- @(cd tests; py.test $(TESTS))
-
-test-coverage:
- @(cd tests; py.test -C $(TESTS))
-
-html-documentation:
- @(cd docs; make html)
-
-pdf-documentation:
- @(cd docs; make latex; cd _build/latex; make all-pdf)
-
-webpage:
- @(cd ../www; ./generate.py)
-
-pylint:
- @pylint --rcfile scripts/pylintrc jinja
from distutils.errors import CCompilerError, DistutilsPlatformError
+#: don't change the variable and assignment. the fabfile parses this
+#: file to get the version for deployment from it.
+VERSION = '2.0'
+
+
data_files = []
documentation_path = 'docs/_build/html'
if os.path.exists(documentation_path):
setup(
name='Jinja2',
- version='2.0rc1',
+ version=VERSION,
url='http://jinja.pocoo.org/',
license='BSD',
author='Armin Ronacher',