Metadata-Version: 2.4
Name: gptdiff
Version: 0.9.0
Summary: Deprecated — gptdiff has been renamed to patchling. This is a compatibility shim that re-exports patchling. Run: pip install patchling
Home-page: https://github.com/255BITS/patchling-py
Author: 255labs
Project-URL: Successor package, https://pypi.org/project/patchling/
Project-URL: Source, https://github.com/255BITS/patchling-py
Classifier: Development Status :: 7 - Inactive
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: patchling>=0.8.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# gptdiff → patchling

**`gptdiff` has been renamed to [`patchling`](https://pypi.org/project/patchling/).**

This package is now a thin compatibility shim: it depends on `patchling` and
re-exports its public API, emitting a `DeprecationWarning` on import. It will not
receive further updates.

## Migrate

```bash
pip install patchling
```

```python
# before
from gptdiff import generate_diff, smartapply, build_environment
# after
from patchling import generate_diff, smartapply, build_environment
```

The API is unchanged. The CLI commands `gptdiff` and `gptpatch` also still work
(as aliases for `patchling` and `patchling-apply`) when you install `patchling`.

MIT licensed. Built by [255labs](https://255labs.xyz).
