Metadata-Version: 2.4
Name: runloom
Version: 0.0.0
Summary: Placeholder reserving the name; the real runloom (Go-style stackful coroutines for Python) ships soon.
Author: Claude
Author-email: Matthew Roberts <matthew@roberts.pm>
License: MIT
Project-URL: Homepage, https://github.com/robertsdotpm/runloom
Classifier: Development Status :: 1 - Planning
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# runloom (name reservation)

This is a placeholder release that reserves the PyPI name **`runloom`**.

The real package — Go-style stackful coroutines for Python (goroutines,
channels, an M:N scheduler for free-threaded CPython) — is on its way:
<https://github.com/robertsdotpm/runloom>

This `0.0.0` release has no functionality; please don't depend on it. The
first real release will be `0.0.1`.

## Build + publish (to claim the name)

```bash
cd runloom-reserve
python -m build                 # -> dist/runloom-0.0.0.tar.gz + .whl
twine check dist/*
twine upload dist/*             # needs a PyPI account + API token
```

If you rebuild, clear stale artifacts first: `rm -rf dist build *.egg-info`.
