cb-conformance 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: cb-conformance
3
+ Version: 0.0.1
4
+ Summary: Placeholder — defensive name registration for CriticalBridge.AI's decision-lineage 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
+ # cb-conformance — placeholder
16
+
17
+ This is a **defensive 0.0.1 placeholder** for the `cb-conformance` PyPI name, owned by [CriticalBridge.AI](https://criticalbridge.ai).
18
+
19
+ The real `cb-conformance` SDK — the thin Python client for emitting decision-lineage records from managed external agents to the CriticalBridge Brain — will publish at **1.0.0** shortly.
20
+
21
+ Source: https://github.com/fburkitt/CriticalBridgeApp/tree/main/packages/clients/python-conformance
22
+
23
+ License: Apache-2.0
@@ -0,0 +1,9 @@
1
+ # cb-conformance — placeholder
2
+
3
+ This is a **defensive 0.0.1 placeholder** for the `cb-conformance` PyPI name, owned by [CriticalBridge.AI](https://criticalbridge.ai).
4
+
5
+ The real `cb-conformance` SDK — the thin Python client for emitting decision-lineage records from managed external agents to the CriticalBridge Brain — will publish at **1.0.0** shortly.
6
+
7
+ Source: https://github.com/fburkitt/CriticalBridgeApp/tree/main/packages/clients/python-conformance
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 = "cb-conformance"
7
+ version = "0.0.1"
8
+ description = "Placeholder — defensive name registration for CriticalBridge.AI's decision-lineage 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/cb_conformance_placeholder"]
@@ -0,0 +1,5 @@
1
+ """Placeholder package for the cb-conformance PyPI name. The real
2
+ 1.0.0 release will publish under the `cb_conformance` import root.
3
+ See https://github.com/fburkitt/CriticalBridgeApp."""
4
+
5
+ __version__ = "0.0.1"