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


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

__version__ = get_version()