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


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

__version__ = get_version()