emmental/lib/version.py

11 lines
200 B
Python

# Copyright 2021 (c) Anna Schumaker.
import os
import sys
MAJOR = 2
MINOR = 9
TESTING = "unittest" in sys.modules
def string():
return f"Emmental {MAJOR}.{MINOR}{'-debug' if __debug__ else ''}"