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


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

__version__ = get_version()