Robin Mueller
18304c31fa
Some checks failed
EIVE/-/pipeline/head There was a failure building this commit
15 lines
254 B
Python
15 lines
254 B
Python
__version__ = "5.1.0"
|
|
|
|
import logging
|
|
from pathlib import Path
|
|
|
|
SW_NAME = "eive-tmtc"
|
|
VERSION_MAJOR = 5
|
|
VERSION_MINOR = 1
|
|
VERSION_REVISION = 0
|
|
|
|
EIVE_TMTC_ROOT = Path(__file__).parent
|
|
PACKAGE_ROOT = EIVE_TMTC_ROOT.parent
|
|
|
|
APP_LOGGER = logging.getLogger()
|