agent-engine-sdk 0.0.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,17 @@
1
+ Metadata-Version: 2.5
2
+ Name: agent-engine-sdk
3
+ Version: 0.0.0
4
+ Summary: Name placeholder for agent-engine-sdk — not yet released
5
+ License: Apache-2.0
6
+ Requires-Python: >=3.11
7
+ Description-Content-Type: text/markdown
8
+
9
+ # agent-engine-sdk
10
+
11
+ **This is a placeholder release. It contains no functionality.**
12
+
13
+ This distribution name is reserved for a package that has not been published
14
+ yet. Version `0.0.0` exists only to hold the name and sorts below every
15
+ future real release. It will be yanked once the first real version ships.
16
+
17
+ Do not depend on this release.
@@ -0,0 +1,9 @@
1
+ # agent-engine-sdk
2
+
3
+ **This is a placeholder release. It contains no functionality.**
4
+
5
+ This distribution name is reserved for a package that has not been published
6
+ yet. Version `0.0.0` exists only to hold the name and sorts below every
7
+ future real release. It will be yanked once the first real version ships.
8
+
9
+ Do not depend on this release.
@@ -0,0 +1,6 @@
1
+ """Placeholder package for the reserved distribution name `agent-engine-sdk`.
2
+
3
+ This module intentionally provides no functionality. See README.md.
4
+ """
5
+
6
+ __version__ = "0.0.0"
@@ -0,0 +1,18 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ # The placeholder deliberately does NOT ship the real import package
6
+ # (agent_engine_sdk) so that installing it can never shadow the real
7
+ # distribution once that is published.
8
+ [tool.hatch.build.targets.wheel]
9
+ packages = ["agent_engine_sdk_placeholder"]
10
+
11
+ [project]
12
+ name = "agent-engine-sdk"
13
+ version = "0.0.0"
14
+ description = "Name placeholder for agent-engine-sdk — not yet released"
15
+ readme = "README.md"
16
+ license = {text = "Apache-2.0"}
17
+ requires-python = ">=3.11"
18
+ dependencies = []