sline 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.
- sline-0.0.1.dist-info/METADATA +29 -0
- sline-0.0.1.dist-info/RECORD +5 -0
- sline-0.0.1.dist-info/WHEEL +5 -0
- sline-0.0.1.dist-info/top_level.txt +1 -0
- sline.py +3 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sline
|
|
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
|
+
# sline
|
|
9
|
+
|
|
10
|
+
sline.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/sline-0.1.0-py3-none-any.whl
|
|
27
|
+
python -c "import sline; print(sline.__version__)"
|
|
28
|
+
deactivate
|
|
29
|
+
```
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
sline.py,sha256=2ZIND5d0zzhOKoA0cizUg1xH-UZtIe4g-XtzG_E9U8I,95
|
|
2
|
+
sline-0.0.1.dist-info/METADATA,sha256=dm3tEcLZsk57_VdaI6ORiKWI-_2bJwUQKKa9dpY9OvI,528
|
|
3
|
+
sline-0.0.1.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
|
|
4
|
+
sline-0.0.1.dist-info/top_level.txt,sha256=LfghZ7gUfI06E9cu-C8uG-ICJr7Aiyp5s9LUG7GSNVY,6
|
|
5
|
+
sline-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sline
|