emmental/lib/version.py
Anna Schumaker 18743f05c4 Emmental 2.10
Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2022-02-25 13:32:32 -05:00

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 ''}"