constants.py 327 B

123456789
  1. """Information that should be available to the python library.
  2. """
  3. from pathlib import Path
  4. # The root of the qmk_firmware tree.
  5. QMK_FIRMWARE = Path.cwd()
  6. # This is the number of directories under `qmk_firmware/keyboards` that will be traversed. This is currently a limitation of our make system.
  7. MAX_KEYBOARD_SUBFOLDERS = 5