agentce-emit 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,9 @@
1
+ # Private specifications (not for public consumption)
2
+ SPECS/
3
+
4
+ # Python build artifacts
5
+ dist/
6
+ build/
7
+ __pycache__/
8
+ *.egg-info/
9
+ .venv/
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.5
2
+ Name: agentce-emit
3
+ Version: 0.0.1
4
+ Summary: Evidence emitter library for the Agent Conformance Engine (canonical CloudEvents + JSON-LD). Placeholder release.
5
+ Project-URL: Homepage, https://agent-conformance.org
6
+ Project-URL: Repository, https://github.com/agent-conformance/agentce
7
+ Author: Agent Conformance Engine maintainers
8
+ License-Expression: Apache-2.0
9
+ Classifier: Development Status :: 1 - Planning
10
+ Requires-Python: >=3.12
11
+ Description-Content-Type: text/markdown
12
+
13
+ # agentce-emit
14
+
15
+ Library for emitting canonical Agent Conformance Engine evidence events (CloudEvents 1.0 envelope, JSON-LD payload). Placeholder release reserving the name; see https://github.com/agent-conformance/agentce.
@@ -0,0 +1,3 @@
1
+ # agentce-emit
2
+
3
+ Library for emitting canonical Agent Conformance Engine evidence events (CloudEvents 1.0 envelope, JSON-LD payload). Placeholder release reserving the name; see https://github.com/agent-conformance/agentce.
@@ -0,0 +1,3 @@
1
+ """agentce-emit: evidence emitter for the Agent Conformance Engine (placeholder)."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,20 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.25"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentce-emit"
7
+ version = "0.0.1"
8
+ description = "Evidence emitter library for the Agent Conformance Engine (canonical CloudEvents + JSON-LD). Placeholder release."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "Agent Conformance Engine maintainers" }]
13
+ classifiers = ["Development Status :: 1 - Planning"]
14
+
15
+ [project.urls]
16
+ Homepage = "https://agent-conformance.org"
17
+ Repository = "https://github.com/agent-conformance/agentce"
18
+
19
+ [tool.hatch.build.targets.wheel]
20
+ packages = ["agentce_emit"]