| 1234567891011121314151617181920212223242526 |
- '''
- Parameters for the curent project
- @author: olivier.massot, 2018
- '''
- from path import Path
- VERSION = "1.0.2"
- 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")
|