view pylons_app/__init__.py @ 246:ca80f8c00562 rhodecode-0.0.0.7.6

Fixed bug in repos, added dependencies and bumped version
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 03 Jun 2010 01:01:36 +0200
parents 710e7a75bb6b
children 3782a6d698af
line wrap: on
line source

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

VERSION = (0, 7, 6, '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]))