Author: leidel
Date: Fri Nov 21 03:26:14 2008
New Revision: 83

Modified:
    trunk/dbtemplates/__init__.py
    trunk/setup.py

Log:
Added hooks for __version__

Modified: trunk/dbtemplates/__init__.py
==============================================================================
--- trunk/dbtemplates/__init__.py       (original)
+++ trunk/dbtemplates/__init__.py       Fri Nov 21 03:26:14 2008
@@ -0,0 +1,2 @@
+VERSION = (0, 5, 3, 'pre')
+__version__ = '.'.join(map(str, VERSION))
\ No newline at end of file

Modified: trunk/setup.py
==============================================================================
--- trunk/setup.py      (original)
+++ trunk/setup.py      Fri Nov 21 03:26:14 2008
@@ -2,8 +2,8 @@

  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='[EMAIL PROTECTED]',

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to