File size: 221 Bytes
3fe47db
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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!")