Metadata-Version: 2.4
Name: evgraph-core
Version: 0.1.0
Summary: Core types for Evgraph: Evidence Graph, nodes, edges, evidence levels, rules, and findings.
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,audit,model-risk
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
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: test
Requires-Dist: pytest>=7; extra == "test"

# evgraph-core

Core library for [Evgraph](https://github.com/SVamseekar/evgraph).

Provides the foundational types every other package builds on:

- `EvidenceGraph`, `EvidenceNode`, `EvidenceEdge`
- `EvidenceLevel`
- `Rule`, `Finding`
- `Adapter`, `AdapterError`, `Assumption`
- Graph serialization helpers

This package has **no** runtime dependency on other Evgraph packages. Higher
layers (`evgraph-rules`, `evgraph`, `evgraph-cli`) depend on it.

## Install

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

## Docs

- Main project: https://github.com/SVamseekar/evgraph
- Specs: `docs/specs/` (EGS, RES)
- Architecture: `docs/ARCHITECTURE.md`

## License

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