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


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

__version__ = get_version()