From: Armin Ronacher Date: Thu, 17 Jul 2008 21:26:14 +0000 (+0200) Subject: make -> fab X-Git-Tag: 2.0~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d43f926cffff7da1e7cafda43b9ccce80e1e6224;p=jinja2.git make -> fab --HG-- branch : trunk --- diff --git a/Makefile b/Makefile deleted file mode 100644 index 6622bd1..0000000 --- a/Makefile +++ /dev/null @@ -1,27 +0,0 @@ -# -# 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 diff --git a/setup.py b/setup.py index 8ea41d8..e94b92f 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,11 @@ from distutils.command.build_ext import build_ext 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): @@ -96,7 +101,7 @@ available.""" setup( name='Jinja2', - version='2.0rc1', + version=VERSION, url='http://jinja.pocoo.org/', license='BSD', author='Armin Ronacher',