winterr 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,7 @@
1
+ /.venv/
2
+ /build/
3
+ /dist/
4
+ *.egg-info/
5
+ __pycache__/
6
+ .pytest_cache/
7
+
winterr-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: winterr
3
+ Version: 0.0.1
4
+ Summary: Python SDK for the Winterr AI full-stack cloud.
5
+ Project-URL: Homepage, https://winterr.ai
6
+ Author: Winterr
7
+ Keywords: ai,cloud,sdk,winterr
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Requires-Python: >=3.9
19
+ Description-Content-Type: text/markdown
20
+
21
+ # Winterr Python SDK
22
+
23
+ The Python SDK for [Winterr](https://winterr.ai), the AI full-stack cloud.
24
+
25
+ This first release establishes the `winterr` package name on PyPI.
26
+
27
+ ```python
28
+ import winterr
29
+
30
+ print(winterr.hello())
31
+ ```
32
+
33
+ ```console
34
+ $ python -m winterr
35
+ Hello, world!
36
+ ```
37
+
@@ -0,0 +1,17 @@
1
+ # Winterr Python SDK
2
+
3
+ The Python SDK for [Winterr](https://winterr.ai), the AI full-stack cloud.
4
+
5
+ This first release establishes the `winterr` package name on PyPI.
6
+
7
+ ```python
8
+ import winterr
9
+
10
+ print(winterr.hello())
11
+ ```
12
+
13
+ ```console
14
+ $ python -m winterr
15
+ Hello, world!
16
+ ```
17
+
@@ -0,0 +1,33 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.27"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "winterr"
7
+ version = "0.0.1"
8
+ description = "Python SDK for the Winterr AI full-stack cloud."
9
+ readme = "README.md"
10
+ requires-python = ">=3.9"
11
+ authors = [
12
+ { name = "Winterr" },
13
+ ]
14
+ keywords = ["winterr", "ai", "cloud", "sdk"]
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3 :: Only",
20
+ "Programming Language :: Python :: 3.9",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ "Programming Language :: Python :: 3.13",
25
+ "Programming Language :: Python :: 3.14",
26
+ ]
27
+
28
+ [project.urls]
29
+ Homepage = "https://winterr.ai"
30
+
31
+ [tool.hatch.build.targets.wheel]
32
+ packages = ["src/winterr"]
33
+
@@ -0,0 +1,7 @@
1
+ """Python SDK for the Winterr AI full-stack cloud."""
2
+
3
+ from ._hello import hello
4
+
5
+ __all__ = ["hello"]
6
+ __version__ = "0.0.1"
7
+
@@ -0,0 +1,13 @@
1
+ """Run the initial Winterr SDK greeting."""
2
+
3
+ from . import hello
4
+
5
+
6
+ def main() -> None:
7
+ """Print the initial Winterr greeting."""
8
+ print(hello())
9
+
10
+
11
+ if __name__ == "__main__":
12
+ main()
13
+
@@ -0,0 +1,7 @@
1
+ """Initial public SDK function."""
2
+
3
+
4
+ def hello() -> str:
5
+ """Return the initial Winterr greeting."""
6
+ return "Hello, world!"
7
+
@@ -0,0 +1,6 @@
1
+ from winterr import hello
2
+
3
+
4
+ def test_hello() -> None:
5
+ assert hello() == "Hello, world!"
6
+