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


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

__version__ = get_version()