criticalbridge 0.0.1__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,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: criticalbridge
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder — defensive name registration for CriticalBridge.AI's managed-agent SDK. The real 1.0.0 release will follow shortly. See https://github.com/fburkitt/CriticalBridgeApp.
|
|
5
|
+
Project-URL: Homepage, https://criticalbridge.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/fburkitt/CriticalBridgeApp
|
|
7
|
+
Author: CriticalBridge.AI
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# criticalbridge — placeholder
|
|
16
|
+
|
|
17
|
+
This is a **defensive 0.0.1 placeholder** for the `criticalbridge` PyPI name, owned by [CriticalBridge.AI](https://criticalbridge.ai).
|
|
18
|
+
|
|
19
|
+
The real `criticalbridge` SDK — the Python managed-agent SDK that boots the conformance sidecar, dispatches A2A tasks to your handlers, and auto-emits decision lineage — will publish at **1.0.0** shortly.
|
|
20
|
+
|
|
21
|
+
Source: https://github.com/fburkitt/CriticalBridgeApp/tree/main/packages/clients/python-managed-agent-sdk
|
|
22
|
+
|
|
23
|
+
License: Apache-2.0
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# criticalbridge — placeholder
|
|
2
|
+
|
|
3
|
+
This is a **defensive 0.0.1 placeholder** for the `criticalbridge` PyPI name, owned by [CriticalBridge.AI](https://criticalbridge.ai).
|
|
4
|
+
|
|
5
|
+
The real `criticalbridge` SDK — the Python managed-agent SDK that boots the conformance sidecar, dispatches A2A tasks to your handlers, and auto-emits decision lineage — will publish at **1.0.0** shortly.
|
|
6
|
+
|
|
7
|
+
Source: https://github.com/fburkitt/CriticalBridgeApp/tree/main/packages/clients/python-managed-agent-sdk
|
|
8
|
+
|
|
9
|
+
License: Apache-2.0
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "criticalbridge"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder — defensive name registration for CriticalBridge.AI's managed-agent SDK. The real 1.0.0 release will follow shortly. See https://github.com/fburkitt/CriticalBridgeApp."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "CriticalBridge.AI" }]
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: Apache Software License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://criticalbridge.ai"
|
|
21
|
+
Repository = "https://github.com/fburkitt/CriticalBridgeApp"
|
|
22
|
+
|
|
23
|
+
[tool.hatch.build.targets.wheel]
|
|
24
|
+
packages = ["src/criticalbridge_placeholder"]
|