Metadata-Version: 2.3
Name: sequa
Version: 0.8.0
Summary: DEPRECATED: Sequa has been renamed to icho. Please install 'icho' instead.
Author: thetechnoadvisor
Author-email: thetechnoadvisor <thetechnoadvisor@gmail.com>
Requires-Dist: icho>=0.7.0
Requires-Python: >=3.12
Description-Content-Type: text/markdown

# ⚠️ DEPRECATION NOTICE: `sequa` has been renamed to `icho`

> **The `sequa` package is deprecated and will no longer receive new feature updates.**
> All future development, releases, and support have moved to **[`icho`](https://pypi.org/project/icho/)**.

---

### Migration Guide

#### 1. Install `icho`

```bash
pip uninstall sequa
pip install icho
```

or with `uv`:

```bash
uv remove sequa
uv add icho
```

#### 2. Update your Python code imports

Change all imports from `sequa` to `icho`:

```python
# Old (Deprecated)
from sequa import cassette, compare_executions

# New
from icho import cassette, compare_executions
```

#### 3. Update CLI usage

Use `icho` instead of `sequa`:

```bash
icho diff --help
icho stats --path cassettes
icho test tests/
```

---

### Backward Compatibility Shim

This release (`sequa==0.8.0`) acts as a transitional shim that depends on `icho` and re-exports `icho` functionality while raising a `FutureWarning`.
