Metadata-Version: 2.4
Name: hlrun
Version: 0.0.1
Summary: hlrun
Author-email: lerogo <lerogohl@gmail.com>
Requires-Python: >=3.12
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# hlrun

Python package with a Rust native extension built via [maturin](https://www.maturin.rs/) and [PyO3](https://pyo3.rs/).

## Project layout

```
src/
  lib.rs          # PyO3 module registration (compiled as hlrun._hlrun)
  functions.rs    # Rust function implementations
  hlrun/          # Python package
    __init__.py   # public exports
    cli.py        # main() entry point
```

All source code lives under `src/`: Rust at the root, the Python package in `src/hlrun/`.

## Development

```bash
maturin develop
hlrun
```

