emmental/lib/version.py

11 lines
201 B
Python

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