Skip to content

DistConfig

src.utils.build.DistConfig

Bases: TypedDict

Maps the 'dist.yml' configuration which governs build behavior.

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