summaryrefslogtreecommitdiff
path: root/ishtar_common/version.py
blob: 2ac8735e92aa0855d3fbd5108803e27899bc03ac (plain)
1
2
3
4
5
6
7
8
9
# 3.0.16
VERSION = (3, 0, 16)


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


__version__ = get_version()