Metadata-Version: 2.4
Name: sline
Version: 0.0.1
Summary: Minimal demo package for PyPI publishing.
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# sline

sline.py for humans.

## Build

```bash
uv build
```

## Verify Locally

Create a temporary virtual environment, install the generated wheel, and verify
the exported version:

```bash
python3 -m venv .venv-test
source .venv-test/bin/activate
pip install dist/sline-0.1.0-py3-none-any.whl
python -c "import sline; print(sline.__version__)"
deactivate
```
