server/src/__init__.py
changeset 118 fea47f1054e2
parent 117 41a78460bdac
child 132 ca7e5ca8635c
--- a/server/src/__init__.py	Fri Jun 05 16:10:12 2015 +0200
+++ b/server/src/__init__.py	Sat Jun 06 22:47:54 2015 +0200
@@ -0,0 +1,17 @@
+VERSION = (0, 1, 0, "alpha", 0)
+
+VERSION_STR = unicode(".".join(map(lambda i:"%02d" % (i,), VERSION[:2])))
+
+
+def get_version():
+    version = '%s.%s' % (VERSION[0], VERSION[1])
+    if VERSION[2]:
+        version = '%s.%s' % (version, VERSION[2])
+    if VERSION[3] == 'alpha':
+        version = '%s-alpha.%s' % (version, VERSION[4])
+    else:
+        if VERSION[3] != 'final':
+            version = '%s %s %s' % (version, VERSION[3], VERSION[4])
+    return version
+
+__version__ = get_version()