Metadata-Version: 2.5
Name: patchtroy
Version: 0.6.0
Summary: Transitional deprecation bridge package: patchtroy has been renamed to playtrafi.
Project-URL: Homepage, https://github.com/marcuz-apl/playtrafi
Project-URL: Repository, https://github.com/marcuz-apl/playtrafi
Project-URL: Issues, https://github.com/marcuz-apl/playtrafi/issues
Author-email: marcuz-apl <support@alfazen.org>
Maintainer-email: "Alfazen Inc." <support@alfazen.org>
License-Expression: Apache-2.0
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Requires-Dist: playtrafi>=0.6.0
Description-Content-Type: text/markdown

# patchtroy (Deprecated & Renamed to Playtrafi)

> ⚠️ **Package Deprecation Notice**: `patchtroy` has been officially renamed to **[`playtrafi`](https://pypi.org/project/playtrafi/)**.
> This package (`patchtroy==0.6.0`) is a transitional bridge that depends on and re-exports `playtrafi`.

---

### Migration Guide

Please update your project dependencies to use `playtrafi`:

```bash
pip uninstall patchtroy
pip install playtrafi
```

Or in your `pyproject.toml` / `requirements.txt`:
```diff
-patchtroy>=0.5.2
+playtrafi>=0.6.0
```

#### Code Migration

Update your Python imports:
```python
# Before
import patchtroy
from patchtroy import Patchtroy, PatchtroyConfig

# After
import playtrafi
from playtrafi import Playtrafi, PlaytrafiConfig
```

CLI commands are also updated:
```bash
# Before
patchtroy "https://example.com"

# After
playtrafi "https://example.com"
```
*(The `patchtroy` CLI command remains available as a compatibility alias in `playtrafi`)*.
