Coverage for src/debputy/plugin/api/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.8.2, created at 2025-09-07 09:27 +0000
« prev ^ index » next coverage.py v7.8.2, created at 2025-09-07 09:27 +0000
1from ...exceptions import (
2 DebputyPluginRuntimeError,
3 DebputyMetadataAccessError,
4)
5from .spec import (
6 DebputyPluginInitializer,
7 PackageProcessingContext,
8 MetadataAutoDetector,
9 DpkgTriggerType,
10 Maintscript,
11 VirtualPath,
12 BinaryCtrlAccessor,
13 PluginInitializationEntryPoint,
14 undocumented_attr,
15 documented_attr,
16 reference_documentation,
17 virtual_path_def,
18 packager_provided_file_reference_documentation,
19 define_debputy_plugin,
20)
22__all__ = [
23 "DebputyPluginInitializer",
24 "PackageProcessingContext",
25 "MetadataAutoDetector",
26 "DpkgTriggerType",
27 "Maintscript",
28 "BinaryCtrlAccessor",
29 "VirtualPath",
30 "PluginInitializationEntryPoint",
31 "documented_attr",
32 "undocumented_attr",
33 "reference_documentation",
34 "virtual_path_def",
35 "DebputyPluginRuntimeError",
36 "DebputyMetadataAccessError",
37 "packager_provided_file_reference_documentation",
38 "define_debputy_plugin",
39]