Added hooks for __version__

git-svn-id: https://django-dbtemplates.googlecode.com/svn/trunk@83 cfb8ba98-e953-0410-9cff-959ffddf5974

committer: leidel <leidel@cfb8ba98-e953-0410-9cff-959ffddf5974>

--HG--
extra : convert_revision : 5c361908f79ffc41f9d88db684370b4a2e194028
This commit is contained in:
leidel 2008-11-21 11:26:14 +00:00
parent 2f37c244b0
commit 84dc3e0bcc
2 changed files with 4 additions and 2 deletions

View file

@ -0,0 +1,2 @@
VERSION = (0, 5, 3, 'pre')
__version__ = '.'.join(map(str, VERSION))

View file

@ -2,8 +2,8 @@ from distutils.core import setup
setup(
name='django-dbtemplates',
version='0.5.2',
description='Template loader for database stored templates with pluggable cache backend',
version=__import__('dbtemplates').__version__,
description='Template loader for database stored templates with extensible cache backend',
long_description=open('docs/overview.txt').read(),
author='Jannis Leidel',
author_email='jannis@leidel.info',