config.py 686 B

1234567891011121314151617181920212223242526272829303132
  1. from subprocess import check_output
  2. import yaml
  3. import os
  4. def config_load(filename: str):
  5. global config
  6. with open(filename, "r") as fp:
  7. config = yaml.safe_load(fp)
  8. if os.path.exists("config_dev.yaml"):
  9. config_load("config_dev.yaml")
  10. else:
  11. config_load("config.yaml")
  12. # Extract the version information from git.
  13. # The match gives us only tags starting with v[0-9]* Using anything else trips up on double digits.
  14. version = check_output(
  15. [
  16. "git",
  17. "describe",
  18. "--abbrev=8",
  19. "--long",
  20. "--tags",
  21. "--dirty",
  22. "--always",
  23. "--match",
  24. "v[0-9]*",
  25. ],
  26. universal_newlines=True,
  27. ).strip()