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


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

__version__ = get_version()