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

# shopline

shopline.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/shopline-0.1.0-py3-none-any.whl
python -c "import shopline; print(shopline.__version__)"
deactivate
```
