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


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

__version__ = get_version()