grammateus-sdk 0.1.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,20 @@
1
+ # Python
2
+ __pycache__/
3
+ *.py[cod]
4
+ .pytest_cache/
5
+ *.egg-info/
6
+ build/
7
+ dist/
8
+ .venv/
9
+ venv/
10
+
11
+ # Node
12
+ node_modules/
13
+ npm-debug.log*
14
+
15
+ # Go
16
+ *.test
17
+ *.out
18
+
19
+ # OS / editor
20
+ .DS_Store
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ ## [0.1.1](https://github.com/aiswiss-davision/sdk-grammateus/compare/python-v0.1.0...python-v0.1.1) (2026-06-13)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * trigger ci ([4822e23](https://github.com/aiswiss-davision/sdk-grammateus/commit/4822e234a675bb0c8ec6d0f406dc8d701be80439))
9
+ * trigger CI ([b0994a1](https://github.com/aiswiss-davision/sdk-grammateus/commit/b0994a127a7cb16586741920f8dd1f2b13ffce94))
10
+
11
+ ## 0.1.0 (2026-06-13)
12
+
13
+
14
+ ### Features
15
+
16
+ * init project with CI/CD ([068d09f](https://github.com/aiswiss-davision/sdk-grammateus/commit/068d09fceaf2defbb9ca8e4b3f92c23678947a87))
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: grammateus-sdk
3
+ Version: 0.1.1
4
+ Summary: Grammateus SDK for Python
5
+ Project-URL: Homepage, https://github.com/aiswiss-davision/sdk-grammateus
6
+ Project-URL: Repository, https://github.com/aiswiss-davision/sdk-grammateus
7
+ Author: aiswiss-davision
8
+ License: MIT
9
+ Keywords: grammateus,sdk
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Requires-Python: >=3.8
14
+ Provides-Extra: test
15
+ Requires-Dist: pytest>=7; extra == 'test'
16
+ Description-Content-Type: text/markdown
17
+
18
+ # grammateus-sdk (Python)
19
+
20
+ Python SDK for Grammateus.
21
+
22
+ ## Install
23
+
24
+ ```bash
25
+ pip install grammateus-sdk
26
+ ```
27
+
28
+ ## Usage
29
+
30
+ ```python
31
+ from grammateus_sdk import hello
32
+
33
+ print(hello()) # "Hello from Grammateus SDK"
34
+ ```
35
+
36
+ See the [project docs](../docs/python.md) for more.
@@ -0,0 +1,19 @@
1
+ # grammateus-sdk (Python)
2
+
3
+ Python SDK for Grammateus.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ pip install grammateus-sdk
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```python
14
+ from grammateus_sdk import hello
15
+
16
+ print(hello()) # "Hello from Grammateus SDK"
17
+ ```
18
+
19
+ See the [project docs](../docs/python.md) for more.
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "grammateus-sdk"
7
+ version = "0.1.1"
8
+ description = "Grammateus SDK for Python"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "aiswiss-davision" }]
13
+ keywords = ["grammateus", "sdk"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Operating System :: OS Independent",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/aiswiss-davision/sdk-grammateus"
22
+ Repository = "https://github.com/aiswiss-davision/sdk-grammateus"
23
+
24
+ [project.optional-dependencies]
25
+ test = ["pytest>=7"]
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/grammateus_sdk"]
29
+
30
+ [tool.pytest.ini_options]
31
+ testpaths = ["tests"]
@@ -0,0 +1,10 @@
1
+ """Grammateus SDK for Python."""
2
+
3
+ __version__ = "0.1.1" # x-release-please-version
4
+
5
+ __all__ = ["hello", "__version__"]
6
+
7
+
8
+ def hello() -> str:
9
+ """Return a friendly greeting from the Grammateus SDK."""
10
+ return "Hello from Grammateus SDK"
@@ -0,0 +1,5 @@
1
+ from grammateus_sdk import hello
2
+
3
+
4
+ def test_hello_returns_greeting():
5
+ assert hello() == "Hello from Grammateus SDK"