mirror of
https://github.com/jazzband/django-dbtemplates.git
synced 2026-03-16 22:20:28 +00:00
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:
parent
2f37c244b0
commit
84dc3e0bcc
2 changed files with 4 additions and 2 deletions
|
|
@ -0,0 +1,2 @@
|
|||
VERSION = (0, 5, 3, 'pre')
|
||||
__version__ = '.'.join(map(str, VERSION))
|
||||
4
setup.py
4
setup.py
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in a new issue