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


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

__version__ = get_version()