summaryrefslogtreecommitdiff
path: root/version.py
blob: bd6b03bdef8da09c68740c24676e0904a5f28ba0 (plain)
1
2
3
4
5
6
7
VERSION = (0, 97, 2, 3)


def get_version():
    return u'.'.join((unicode(num) for num in VERSION))

__version__ = get_version()