Files
django-eveigb/eveigb/__init__.py
2012-03-03 15:30:08 +00:00

11 lines
256 B
Python

VERSION = (0, 1)
# Dynamically calculate the version based on VERSION tuple
if len(VERSION)>2 and VERSION[2] is not None:
str_version = "%d.%d_%s" % VERSION[:3]
else:
str_version = "%d.%d" % VERSION[:2]
__version__ = str_version
VERSION = (0, 1)