Metadata-Version: 2.4
Name: controlbridge-api
Version: 0.5.1
Summary: DEPRECATED: renamed to 'evidentia-api'. Transitional re-export shim; removed in v0.7.0.
Project-URL: Homepage, https://github.com/allenfbyrd/evidentia
Project-URL: Repository, https://github.com/allenfbyrd/evidentia
Project-URL: Issues, https://github.com/allenfbyrd/evidentia/issues
Project-URL: Changelog, https://github.com/allenfbyrd/evidentia/blob/main/CHANGELOG.md
Author-email: Allen Byrd <allen@allenfbyrd.com>
License-Expression: Apache-2.0
Keywords: compliance,deprecated,evidentia-api,grc,renamed
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: evidentia-api<0.7.0,>=0.6.0
Description-Content-Type: text/markdown

# controlbridge-api (DEPRECATED)

**This package has been renamed to [`evidentia-api`](https://pypi.org/project/evidentia-api/).**

The name change resolves a conflict with an unrelated commercial product.
This v0.5.1 release is a transitional re-export shim that forwards every
import to `evidentia-api`. It will be **removed in v0.7.0 (~October 2026)**.

## Migration

```bash
pip uninstall controlbridge-api
pip install evidentia-api
```

Then update any imports:

```python
# before
import controlbridge_api
from controlbridge_api.submodule import Thing

# after
import evidentia_api
from evidentia_api.submodule import Thing
```

## Why

See the [v0.6.0 CHANGELOG entry](https://github.com/allenfbyrd/evidentia/blob/main/CHANGELOG.md)
for the full rename rationale.
