pyhamtools/pyhamtools/version.py
2018-05-20 20:10:25 +02:00

4 lines
153 B
Python

VERSION = (0, 7, 1)
__release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
__version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))