view pylons_app/__init__.py @ 220:e6c802a8dede

repo edit
author Marcin Kuzminski <marcin@python-works.com>
date Tue, 25 May 2010 19:31:56 +0200
parents 58b46f9194c3
children 710e7a75bb6b
line wrap: on
line source

"""
Hg app, a web based mercurial repository managment based on pylons
"""

VERSION = (0, 7, 4, 'beta')

__version__ = '.'.join((str(each) for each in VERSION[:4]))

def get_version():
    """
    Returns shorter version (digit parts only) as string.
    """
    return '.'.join((str(each) for each in VERSION[:3]))