| 12345678910111213141516171819 |
- '''
- Parameters for the curent project
- @author: olivier.massot, 2018
- '''
- from path import Path
- VERSION = "0.4.0"
- MAIN = Path(__file__).parent.parent.abspath()
- RSCDIR = MAIN / "ui" / "rsc"
- LOGDIR = Path("%appdata%").expandvars() / "mncheck"
- LOGDIR.mkdir_p()
- LOGCONF = MAIN / "core" / "logging.yaml"
|