Data-Test-Executer Framework speziell zum Test von Datenverarbeitungen mit Datengenerierung, Systemvorbereitungen, Einspielungen, ganzheitlicher diversifizierender Vergleich
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
566 B

#!/usr/bin/python
# -*- coding: utf-8 -*-
# ---------------------------------------------------------------------------------------------------------
# Author : Ulrich Carmesin
# Source : gitea.ucarmesin.de
# ---------------------------------------------------------------------------------------------------------
"""
constants
"""
import basic.constants as B
import os
HOME_PATH = B.HOME_PATH
DATA_PATH = os.path.join(HOME_PATH, "data")
PROG_PATH = os.path.join(HOME_PATH, "program")
COMP_PATH = os.path.join(HOME_PATH, "program", "components")
2 years ago
OS_SYSTEM = "linux"