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

# shopline

Minimal single-file demo package for PyPI publishing.

## Build

```bash
cd demo
uv build
```

## Verify Locally

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

```bash
cd demo
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
```

## Publish To PyPI

```bash
cd demo
uv publish \
  --publish-url https://upload.pypi.org/legacy/ \
  --check-url https://pypi.org/simple/
```

If the package name is already taken on PyPI, update `project.name` in
`pyproject.toml` before publishing.
