Metadata-Version: 2.4
Name: pydantic-monty-runtime
Version: 0.0.19b2
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Rust
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Environment :: MacOS X
Summary: The monty CLI binary — spawned as worker subprocesses by pydantic-monty
Home-Page: https://github.com/pydantic/monty/
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Homepage, https://github.com/pydantic/monty
Project-URL: Source, https://github.com/pydantic/monty

# pydantic-monty-runtime

The `monty` CLI binary, packaged for PyPI in the same way `uv` and `ruff`
package theirs: installing this wheel places the compiled binary in the
environment's scripts directory.

It exists so that [`pydantic-monty`](https://pypi.org/project/pydantic-monty/)
— which runs the Monty sandboxed Python interpreter in crash-isolated worker
subprocesses — can find a `monty` binary without any manual setup. It is
installed automatically as a dependency of `pydantic-monty`; you normally
don't install it directly.

The binary is also a standalone CLI for the
[Monty](https://github.com/pydantic/monty) interpreter:

```console
$ monty -c "print('hello world')"
hello world
```

