Metadata-Version: 2.4
Name: eml-witness
Version: 0.3.0
Summary: DEPRECATED — consolidated into eml-cost[witness]. See README.
Author: Monogate Research
License: PROPRIETARY-PRE-RELEASE
Project-URL: Homepage, https://monogate.org
Project-URL: Repository, https://github.com/agent-maestro/eml-witness
Project-URL: Issues, https://github.com/agent-maestro/eml-witness/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[witness]>=0.15.0

# eml-witness — DEPRECATED

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

## Migration

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

Then update your imports:

```python
# OLD
from eml_witness import X

# NEW
from eml_cost.witness 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.3.0) is a thin shim that re-exports
from `eml_cost.witness` and emits a `DeprecationWarning`. Your
existing code keeps working; you just see the migration notice
on import.
