server/src/remieplt/__init__.py
changeset 3 fc0f3e398166
child 19 e24870556c07
equal deleted inserted replaced
2:a2f733f900c0 3:fc0f3e398166
       
     1 VERSION = (0, 1, 0, "alpha", 0)
       
     2 
       
     3 VERSION_STR = unicode(".".join(map(lambda i:"%02d" % (i,), VERSION[:2])))
       
     4 
       
     5 
       
     6 def get_version():
       
     7     version = '%s.%s' % (VERSION[0], VERSION[1])
       
     8     if VERSION[2]:
       
     9         version = '%s.%s' % (version, VERSION[2])
       
    10     if VERSION[3] == 'alpha':
       
    11         version = '%s-alpha.%s' % (version, VERSION[4])
       
    12     else:
       
    13         if VERSION[3] != 'final':
       
    14             version = '%s %s %s' % (version, VERSION[3], VERSION[4])
       
    15     return version
       
    16 
       
    17 __version__ = get_version()