Add versioning information to eve_api

This commit is contained in:
2011-09-09 14:41:49 +01:00
parent 43dea4127e
commit b005d0b5ea

View File

@@ -0,0 +1,11 @@
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