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.
- winterr-0.0.1/.gitignore +7 -0
- winterr-0.0.1/PKG-INFO +37 -0
- winterr-0.0.1/README.md +17 -0
- winterr-0.0.1/pyproject.toml +33 -0
- winterr-0.0.1/src/winterr/__init__.py +7 -0
- winterr-0.0.1/src/winterr/__main__.py +13 -0
- winterr-0.0.1/src/winterr/_hello.py +7 -0
- winterr-0.0.1/tests/test_winterr.py +6 -0
winterr-0.0.1/.gitignore
ADDED
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
|
+
|
winterr-0.0.1/README.md
ADDED
|
@@ -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
|
+
|