sline 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.
sline-0.0.1/PKG-INFO ADDED
@@ -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
+ ```
sline-0.0.1/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # sline
2
+
3
+ sline.py for humans.
4
+
5
+ ## Build
6
+
7
+ ```bash
8
+ uv build
9
+ ```
10
+
11
+ ## Verify Locally
12
+
13
+ Create a temporary virtual environment, install the generated wheel, and verify
14
+ the exported version:
15
+
16
+ ```bash
17
+ python3 -m venv .venv-test
18
+ source .venv-test/bin/activate
19
+ pip install dist/sline-0.1.0-py3-none-any.whl
20
+ python -c "import sline; print(sline.__version__)"
21
+ deactivate
22
+ ```
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sline"
7
+ version = "0.0.1"
8
+ description = "Minimal demo package for PyPI publishing."
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+
12
+ [tool.setuptools]
13
+ py-modules = ["sline"]
sline-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ sline.py
4
+ sline.egg-info/PKG-INFO
5
+ sline.egg-info/SOURCES.txt
6
+ sline.egg-info/dependency_links.txt
7
+ sline.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ sline
sline-0.0.1/sline.py ADDED
@@ -0,0 +1,3 @@
1
+ """Minimal single-file module used for PyPI publishing verification."""
2
+
3
+ __version__ = "0.0.1"