6 lines
104 B
Python
6 lines
104 B
Python
|
|
VERSION = (1, 3, 1, 'dev')
|
|
__version__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
|
|
|
|
|