dirigent-plugin 0.9.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ Copyright (c) 2026 Morten Olav Hansen <morten@winterop.com>. All rights reserved.
2
+
3
+ This source code and accompanying documentation are the property of
4
+ Morten Olav Hansen. No license, express or implied, is granted to use, copy,
5
+ modify, merge, publish, distribute, sublicense, or sell copies of this
6
+ software or its derivatives.
7
+
8
+ The source is published for reference only. Any use beyond reading
9
+ requires written permission from the copyright holder.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
13
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
14
+ IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES,
15
+ OR OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
16
+
17
+ Third-party components redistributed with this software, and the licences they
18
+ carry, are listed in THIRD_PARTY_NOTICES.md.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.4
2
+ Name: dirigent-plugin
3
+ Version: 0.9.0
4
+ Summary: The dirigent plugin contract: block specs, protocols, and markers.
5
+ License-Expression: LicenseRef-Proprietary
6
+ License-File: LICENSE
7
+ Requires-Dist: dirigent-common
8
+ Requires-Dist: httpx2>=2.12.0
9
+ Requires-Dist: pluginkit>=0.5.0
10
+ Requires-Dist: pydantic>=2.13.5
11
+ Requires-Python: >=3.13
12
+ Description-Content-Type: text/markdown
13
+
14
+ # dirigent-plugin
15
+
16
+ The dirigent plugin contract: block specs, protocols, and markers.
@@ -0,0 +1,3 @@
1
+ # dirigent-plugin
2
+
3
+ The dirigent plugin contract: block specs, protocols, and markers.
@@ -0,0 +1,18 @@
1
+ [project]
2
+ name = "dirigent-plugin"
3
+ version = "0.9.0"
4
+ description = "The dirigent plugin contract: block specs, protocols, and markers."
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ license = "LicenseRef-Proprietary"
8
+ license-files = ["LICENSE"]
9
+ dependencies = [
10
+ "dirigent-common",
11
+ "httpx2>=2.12.0",
12
+ "pluginkit>=0.5.0",
13
+ "pydantic>=2.13.5",
14
+ ]
15
+
16
+ [build-system]
17
+ requires = ["uv_build>=0.12.0,<0.13.0"]
18
+ build-backend = "uv_build"
@@ -0,0 +1,18 @@
1
+ [project]
2
+ name = "dirigent-plugin"
3
+ version = "0.9.0"
4
+ description = "The dirigent plugin contract: block specs, protocols, and markers."
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ license = "LicenseRef-Proprietary"
8
+ license-files = ["LICENSE"]
9
+ dependencies = [
10
+ "dirigent-common",
11
+ "httpx2>=2.12.0",
12
+ "pluginkit>=0.5.0",
13
+ "pydantic>=2.13.5",
14
+ ]
15
+
16
+ [build-system]
17
+ requires = ["uv_build>=0.12.0,<0.13.0"]
18
+ build-backend = "uv_build"
@@ -0,0 +1,115 @@
1
+ """The dirigent plugin contract: small, stable, and the only dirigent package a block author imports."""
2
+
3
+ from dirigent_plugin.blocks import (
4
+ BLOCK_ID_PATTERN,
5
+ SURFACE_ID_PATTERN,
6
+ AlertMessage,
7
+ AnyOperator,
8
+ AnySensor,
9
+ BlockFailure,
10
+ ByteSink,
11
+ ConnectionKind,
12
+ ConnectionRef,
13
+ Contribution,
14
+ ErrorClass,
15
+ FormatCheck,
16
+ Logger,
17
+ Notifier,
18
+ NotYet,
19
+ Operator,
20
+ OperatorSpec,
21
+ ProbeResult,
22
+ ProbeStatus,
23
+ RemoteHandle,
24
+ RunId,
25
+ RunRefused,
26
+ Runs,
27
+ RunSnapshot,
28
+ RunState,
29
+ Sensor,
30
+ SensorSpec,
31
+ ShellString,
32
+ StartedRun,
33
+ StatResult,
34
+ StepContext,
35
+ Storage,
36
+ StorageBackend,
37
+ classify_default,
38
+ merge_contributions,
39
+ shell_string_fields,
40
+ )
41
+ from dirigent_plugin.markers import (
42
+ ENTRY_POINT_GROUP,
43
+ PROJECT_NAME,
44
+ contribute,
45
+ extension,
46
+ extension_point,
47
+ formatters,
48
+ )
49
+ from dirigent_plugin.transforms import (
50
+ ConvertConfig,
51
+ Converter,
52
+ ConvertOutput,
53
+ Filterer,
54
+ Mapper,
55
+ ProgramConfig,
56
+ TransformConfig,
57
+ Transformer,
58
+ TransformError,
59
+ TransformOutput,
60
+ )
61
+
62
+ __all__ = [
63
+ "AlertMessage",
64
+ "AnyOperator",
65
+ "AnySensor",
66
+ "BLOCK_ID_PATTERN",
67
+ "BlockFailure",
68
+ "ByteSink",
69
+ "ConnectionKind",
70
+ "ConnectionRef",
71
+ "Contribution",
72
+ "ConvertConfig",
73
+ "ConvertOutput",
74
+ "Converter",
75
+ "ENTRY_POINT_GROUP",
76
+ "ErrorClass",
77
+ "Filterer",
78
+ "FormatCheck",
79
+ "Logger",
80
+ "Mapper",
81
+ "NotYet",
82
+ "Notifier",
83
+ "Operator",
84
+ "OperatorSpec",
85
+ "PROJECT_NAME",
86
+ "ProbeResult",
87
+ "ProbeStatus",
88
+ "ProgramConfig",
89
+ "RemoteHandle",
90
+ "RunId",
91
+ "RunRefused",
92
+ "RunSnapshot",
93
+ "RunState",
94
+ "Runs",
95
+ "SURFACE_ID_PATTERN",
96
+ "Sensor",
97
+ "SensorSpec",
98
+ "ShellString",
99
+ "StartedRun",
100
+ "StatResult",
101
+ "StepContext",
102
+ "Storage",
103
+ "StorageBackend",
104
+ "TransformConfig",
105
+ "TransformError",
106
+ "TransformOutput",
107
+ "Transformer",
108
+ "classify_default",
109
+ "contribute",
110
+ "extension",
111
+ "extension_point",
112
+ "formatters",
113
+ "merge_contributions",
114
+ "shell_string_fields",
115
+ ]