Skip to content

DistConfigCopyDir

src.utils.build.DistConfigCopyDir

Bases: TypedDict

Maps the settings for a dir which need to be copied to the release dir.

Source code in src\utils\build.py
53
54
55
56
57
58
59
60
class DistConfigCopyDir(TypedDict):
    """Maps the settings for a dir which need to be copied to the release dir."""
    paths: list[list[str]]
    files: NotRequired[list[list[str]]]
    exclude_ext: NotRequired[list[str]]
    exclude_dirs: NotRequired[list[str]]
    exclude_files: NotRequired[list[str]]
    recursive: NotRequired[bool]