Metadata-Version: 2.4
Name: aevum-store-oxigraph
Version: 0.3.0
Summary: Aevum — Oxigraph GraphStore backend (small deployments).
Project-URL: Homepage, https://aevum.build
Project-URL: Repository, https://github.com/aevum-labs/aevum
License: Apache-2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Python: >=3.11
Requires-Dist: aevum-core
Requires-Dist: pyoxigraph<0.6,>=0.5
Description-Content-Type: text/markdown

# aevum-store-oxigraph

Oxigraph-backed graph store for Aevum. Suitable for single-node and embedded deployments. No external database required.

```bash
pip install aevum-store-oxigraph
```

```python
from aevum.core import Engine
from aevum.store.oxigraph import OxigraphStore

engine = Engine(graph_store=OxigraphStore(path="./aevum-data"))
```

For team deployments requiring shared state, use `aevum-store-postgres` instead.
See the [main repository README](https://github.com/aevum-labs/aevum) for backend selection guidance.
