Bases: TypedDict
Maps the 'dist.yml' configuration which governs build behavior.
Source code in src\utils\build.py
| class DistConfig(TypedDict):
"""Maps the 'dist.yml' configuration which governs build behavior."""
names: DistConfigNames
spec: DistConfigSpec
make: DistConfigMakeDir
copy: dict[str, DistConfigCopyDir]
|