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

# sku

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