stackmachine 0.2.1__py3-none-any.whl

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,10 @@
1
+ """StackMachine Python SDK."""
2
+
3
+ from importlib.metadata import PackageNotFoundError, version
4
+
5
+ try:
6
+ __version__ = version("stackmachine")
7
+ except PackageNotFoundError:
8
+ __version__ = "0.0.0"
9
+
10
+ __all__ = ["__version__"]
stackmachine/py.typed ADDED
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: stackmachine
3
+ Version: 0.2.1
4
+ Summary: Python SDK for StackMachine.
5
+ Project-URL: Homepage, https://github.com/stackmachine/sdks/tree/main/python
6
+ Project-URL: Repository, https://github.com/stackmachine/sdks
7
+ Project-URL: Issues, https://github.com/stackmachine/sdks/issues
8
+ Classifier: Development Status :: 2 - Pre-Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Typing :: Typed
16
+ Requires-Python: >=3.9
17
+ Description-Content-Type: text/markdown
18
+
19
+ # StackMachine Python SDK
20
+
21
+ Python SDK for StackMachine.
22
+
23
+ ## Installation
24
+
25
+ ```bash
26
+ uv add stackmachine
27
+ ```
28
+
29
+ ## Status
30
+
31
+ This package currently contains the initial Python SDK scaffold. The public API implementation will be added in a follow-up release.
32
+
33
+ ## Manual Publish
34
+
35
+ Use this path for the first package upload before PyPI Trusted Publishing is configured:
36
+
37
+ ```bash
38
+ cd python
39
+ uv sync --dev
40
+ uv build --no-sources
41
+ uv publish
42
+ ```
@@ -0,0 +1,5 @@
1
+ stackmachine/__init__.py,sha256=eaOK_KJSg1r7TJ35oWSjJVJ_CxeZpkGPbRn9MlGA4Co,223
2
+ stackmachine/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ stackmachine-0.2.1.dist-info/METADATA,sha256=z8fjJ6KauWw3HcS5oRxccYaAQLqxcsIeabJBtLnqAYk,1163
4
+ stackmachine-0.2.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
5
+ stackmachine-0.2.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any