2018-12-20 11:54:47 +01:00

7 lines
175 B
Python

"""Set the version information."""
try:
VERSION = __import__('pkg_resources') \
.get_distribution(__name__).version
except Exception as e:
VERSION = 'unknown'