```
$ python -m venv venv

$ pip install -U pip

$ pip install maturin

# Installiert Python Paket
$ maturin develop

$ ls venv/lib/python3.12/site-packages/
maturin/                   pip/                 rs_montecarlo/
maturin-1.10.2.dist-info/  pip-25.3.dist-info/  rs_montecarlo-0.1.0.dist-info/

# Baut wheel
$ maturin build

$ ls target/wheels/
rs_montecarlo-0.1.0-cp312-cp312-manylinux_2_34_x86_64.whl

```
