Files
test-auth/eve_proxy/__init__.py
2010-02-23 10:16:25 +00:00

10 lines
239 B
Python
Executable File

VERSION = (0, 4)
# 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