Metadata-Version: 2.4
Name: eml-graph
Version: 0.2.0
Summary: DEPRECATED — consolidated into eml-cost[graph]. See README.
Author: Monogate Research
License: PROPRIETARY-PRE-RELEASE
Project-URL: Homepage, https://monogate.org
Project-URL: Repository, https://github.com/agent-maestro/eml-graph
Project-URL: Issues, https://github.com/agent-maestro/eml-graph/issues
Keywords: eml,deprecated
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Science/Research
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 :: Mathematics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: eml-cost[graph]>=0.15.0

# eml-graph — DEPRECATED

`eml-graph` has been consolidated into `eml-cost` as the
`eml_cost.graph` subpackage. The standalone distribution will
receive no further updates.

## Migration

```bash
pip uninstall eml-graph
pip install "eml-cost[graph]>=0.15.0"
```

Then update your imports:

```python
# OLD
from eml_graph import X

# NEW
from eml_cost.graph import X
```

## Why?

`eml-cost` now provides the full toolbelt — `cost`, `rewrite`,
`witness`, `explore`, `graph`, and `jupyter` subpackages — under
one install + one version line. See the
[`eml-cost` README](https://github.com/agent-maestro/eml-cost)
for details.

This package version (0.2.0) is a thin shim that re-exports
from `eml_cost.graph` and emits a `DeprecationWarning`. Your
existing code keeps working; you just see the migration notice
on import.
