summaryrefslogtreecommitdiff
path: root/version.py
blob: e5d7057f59133b70c6493953efe07879adfc844e (plain)
1
2
3
4
5
6
7
8
# 1.99.12
VERSION = (1, 99, 12)


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

__version__ = get_version()