warmhub 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.
warmhub-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.4
2
+ Name: warmhub
3
+ Version: 0.0.1
4
+ Summary: Placeholder for the WarmHub Python client. Do not depend on this version.
5
+ Project-URL: Homepage, https://warmhub.ai
6
+ Project-URL: Documentation, https://docs.warmhub.ai
7
+ Author: WarmHub
8
+ License: MIT
9
+ Requires-Python: >=3.10
10
+ Description-Content-Type: text/markdown
11
+
12
+ # warmhub (placeholder)
13
+
14
+ This release (0.0.1) is a placeholder that registers the `warmhub` project
15
+ name on PyPI for the WarmHub Python client. It is yanked and contains no
16
+ functionality — do not install or depend on it.
17
+
18
+ The real SDK is published by the WarmHub release pipeline under a higher
19
+ version number. See https://docs.warmhub.ai for the client documentation.
@@ -0,0 +1,8 @@
1
+ # warmhub (placeholder)
2
+
3
+ This release (0.0.1) is a placeholder that registers the `warmhub` project
4
+ name on PyPI for the WarmHub Python client. It is yanked and contains no
5
+ functionality — do not install or depend on it.
6
+
7
+ The real SDK is published by the WarmHub release pipeline under a higher
8
+ version number. See https://docs.warmhub.ai for the client documentation.
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "warmhub"
7
+ version = "0.0.1"
8
+ description = "Placeholder for the WarmHub Python client. Do not depend on this version."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "WarmHub" }]
13
+
14
+ [project.urls]
15
+ Homepage = "https://warmhub.ai"
16
+ Documentation = "https://docs.warmhub.ai"
17
+
18
+ [tool.hatch.build.targets.wheel]
19
+ packages = ["src/warmhub"]
@@ -0,0 +1,8 @@
1
+ """Placeholder for the WarmHub Python client.
2
+
3
+ This version (0.0.1) exists only to register the ``warmhub`` project name on
4
+ PyPI. It is yanked and contains no functionality. The real SDK is published
5
+ by the WarmHub release pipeline under a higher version number.
6
+ """
7
+
8
+ __version__ = "0.0.1"