Metadata-Version: 2.4
Name: evgraph-rules
Version: 0.1.0
Summary: Built-in Evgraph rule pack: approval, dataset-manifest, and model-version provenance checks.
Author-email: Marti Soura Vamseekar <martisoura@gmail.com>
License: BSD-3-Clause
Project-URL: Homepage, https://github.com/SVamseekar/evgraph
Project-URL: Documentation, https://github.com/SVamseekar/evgraph/tree/main/docs
Project-URL: Repository, https://github.com/SVamseekar/evgraph
Project-URL: Changelog, https://github.com/SVamseekar/evgraph/blob/main/CHANGELOG.md
Project-URL: Issues, https://github.com/SVamseekar/evgraph/issues
Keywords: evidence-graph,governance,rules,audit
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: evgraph-core>=0.1.0
Provides-Extra: test
Requires-Dist: pytest>=7; extra == "test"

# evgraph-rules

Built-in rule pack for [Evgraph](https://github.com/SVamseekar/evgraph).

Rules ship as a separate package so policy can evolve without changing
`evgraph-core`. They register under the `evgraph.rules` entry-point group and
are loaded automatically by `evgraph.discover_rules()`.

Included rules:

- `approval-precedes-deployment` — deployment time must not precede approval
- `dataset-manifest-complete` — required manifest fields are present
- `model-version-has-training-provenance` — model versions should link to training runs

## Install

```bash
pip install -e .
```

Requires `evgraph-core`.

## License

BSD 3-Clause — see the monorepo `LICENSE`.
