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


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


__version__ = get_version()