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


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

__version__ = get_version()