Initial import

This commit is contained in:
2012-03-03 15:30:08 +00:00
commit 8042a33a8e
8 changed files with 94 additions and 0 deletions

10
eveigb/__init__.py Normal file
View File

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