__init__.py 199 B

123456789
  1. import os.path as osp
  2. import yaml
  3. here = osp.dirname(osp.abspath(__file__))
  4. config_file = osp.join(here, 'default_config.yaml')
  5. default_config = yaml.load(open(config_file))
  6. del here, config_file