agentce 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/
agentce-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.5
2
+ Name: agentce
3
+ Version: 0.0.1
4
+ Summary: Alias package: installs agent-conformance (the Agent Conformance Engine) so that `pip install agentce` works.
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
+ Requires-Dist: agent-conformance==0.0.1
12
+ Description-Content-Type: text/markdown
13
+
14
+ # agentce (alias)
15
+
16
+ `pip install agentce` installs `agent-conformance`, the Python implementation of the Agent Conformance Engine. See https://github.com/agent-conformance/agentce.
@@ -0,0 +1,3 @@
1
+ # agentce (alias)
2
+
3
+ `pip install agentce` installs `agent-conformance`, the Python implementation of the Agent Conformance Engine. See https://github.com/agent-conformance/agentce.
@@ -0,0 +1 @@
1
+ """Alias package for agent-conformance. Nothing to import here; use `import agentce`."""
@@ -0,0 +1,21 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.25"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentce"
7
+ version = "0.0.1"
8
+ description = "Alias package: installs agent-conformance (the Agent Conformance Engine) so that `pip install agentce` works."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ license = "Apache-2.0"
12
+ authors = [{ name = "Agent Conformance Engine maintainers" }]
13
+ dependencies = ["agent-conformance==0.0.1"]
14
+ classifiers = ["Development Status :: 1 - Planning"]
15
+
16
+ [project.urls]
17
+ Homepage = "https://agent-conformance.org"
18
+ Repository = "https://github.com/agent-conformance/agentce"
19
+
20
+ [tool.hatch.build.targets.wheel]
21
+ packages = ["agentce_alias"]