solobot 0.0.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,29 @@
1
+ Metadata-Version: 2.4
2
+ Name: solobot
3
+ Version: 0.0.1
4
+ Summary: Minimal demo package for PyPI publishing.
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+
8
+ # solobot
9
+
10
+ solobot.py for humans.
11
+
12
+ ## Build
13
+
14
+ ```bash
15
+ uv build
16
+ ```
17
+
18
+ ## Verify Locally
19
+
20
+ Create a temporary virtual environment, install the generated wheel, and verify
21
+ the exported version:
22
+
23
+ ```bash
24
+ python3 -m venv .venv-test
25
+ source .venv-test/bin/activate
26
+ pip install dist/solobot-0.1.0-py3-none-any.whl
27
+ python -c "import solobot; print(solobot.__version__)"
28
+ deactivate
29
+ ```
@@ -0,0 +1,5 @@
1
+ solobot.py,sha256=2ZIND5d0zzhOKoA0cizUg1xH-UZtIe4g-XtzG_E9U8I,95
2
+ solobot-0.0.1.dist-info/METADATA,sha256=uu_lWM-gxxn2pORjcCcBJ2S_tMwBDWde6h0VqPBKYp0,540
3
+ solobot-0.0.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
4
+ solobot-0.0.1.dist-info/top_level.txt,sha256=KexxYST6xDmdFf9vLYT3VZmyT_XUJ-Q6Rq816NXuAYw,8
5
+ solobot-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ solobot
solobot.py ADDED
@@ -0,0 +1,3 @@
1
+ """Minimal single-file module used for PyPI publishing verification."""
2
+
3
+ __version__ = "0.0.1"