''' Parameters for the curent project @author: olivier.massot, 2018 ''' from path import Path VERSION = "0.8.4" MAIN = Path(__file__).parent.parent.abspath() CONTACT = "sig@manchenumerique.fr" RSCDIR = MAIN / "ui" / "rsc" TESTDIR = MAIN / "test" LOGCONF = MAIN / "core" / "logging.yaml" USER_DIR = Path("%appdata%").expandvars() / "mncheck" USER_DIR.mkdir_p() LOGDIR = USER_DIR USER_DATA = USER_DIR / 'user.yaml' COVERAGE_DIR = Path(MAIN / "coverage")