Installation
Requirements
- Python 3.10 or later
- NumPy ≥ 1.24
PyPI (Recommended)
pip install cegraph
Verify Installation
Run this Python snippet to confirm everything works:
import cegraph print(cegraph.__version__)
You should see 0.1.0 printed.
From Source
Clone the repository and install in editable mode:
git clone https://github.com/keyreyla/cegraph.git cd cegraph pip install -e .
Dependencies
cegraph keeps its dependency footprint minimal. At runtime, it only requires:
numpy≥ 1.24 — numerical computing
Optional (development): pytest, ruff, mypy.