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


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

__version__ = get_version()