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