wbrule / ui /__about__.py
intoxication's picture
Upload 12 files
3fe47db
raw
history blame
221 Bytes
import logging
from pathlib import Path
__version__ = "0.0.0"
try:
__version__ = open(Path(__file__).parent.parent / "VERSION.txt", "r").read()
except Exception as e:
logging.exception("No VERSION.txt found!")