summaryrefslogtreecommitdiffstats
path: root/src/debputy/plugin/api/__init__.py
blob: 0fa24be5c3493c0d334bf90ea8caa1bb0e47a2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from ...exceptions import (
    DebputyPluginRuntimeError,
    DebputyMetadataAccessError,
)
from .spec import (
    DebputyPluginInitializer,
    PackageProcessingContext,
    MetadataAutoDetector,
    DpkgTriggerType,
    Maintscript,
    VirtualPath,
    BinaryCtrlAccessor,
    PluginInitializationEntryPoint,
    undocumented_attr,
    documented_attr,
    reference_documentation,
    virtual_path_def,
    packager_provided_file_reference_documentation,
)

__all__ = [
    "DebputyPluginInitializer",
    "PackageProcessingContext",
    "MetadataAutoDetector",
    "DpkgTriggerType",
    "Maintscript",
    "BinaryCtrlAccessor",
    "VirtualPath",
    "PluginInitializationEntryPoint",
    "documented_attr",
    "undocumented_attr",
    "reference_documentation",
    "virtual_path_def",
    "DebputyPluginRuntimeError",
    "DebputyMetadataAccessError",
    "packager_provided_file_reference_documentation",
]