Metadata-Version: 2.4
Name: celine-regorus
Version: 0.9.1.post20260210043442
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: BSD License
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
License: MIT AND Apache-2.0 AND BSD-3-Clause
Requires-Python: >=3.8
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# celine-regorus

Python wheels for **regorus** built and published by the CELINE project.

This repository is **not** the upstream source code of regorus.
It is an automated packaging repository whose only responsibility is to:

- track upstream releases of `microsoft/regorus`
- build Python wheels
- publish them to PyPI under the name **`celine-regorus`**


---

## Usage example

See official documentation for usage

```py

from regorus import Engine

engine = Engine()

engine.add_policy_from_file("./policy.rego")
engine.set_input({ hello: "world" })

# Evaluate rule
result = engine.eval_rule("my_rule")
print(result)
```

---

## Scope and guarantees

- **Supported platforms**
  - Linux x86_64 ✅
- **Not supported (by design)**
  - macOS ❌
  - Windows ❌
  - Other architectures ❌

If you need additional platforms, please open a PR.

---

