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


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

__version__ = get_version()