Metadata-Version: 2.4
Name: diffctx
Version: 0.1.0
Summary: Redirect alias for the treemapper package — smart git diff context for LLMs.
Author-email: Nikolay Eremeev <nikolay.eremeev@outlook.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/nikolay-e/diffctx
Project-URL: Repository, https://github.com/nikolay-e/diffctx
Project-URL: Issues, https://github.com/nikolay-e/diffctx/issues
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: treemapper>=1.6.1

# diffctx

Alias namespace for the **[`treemapper`](https://pypi.org/project/treemapper/)**
package. `pip install diffctx` installs `treemapper>=1.7` and re-exports
its diff-context API so that `import diffctx` works.

Both names point to the same project:
<https://github.com/nikolay-e/diffctx>.

```python
import diffctx
ctx = diffctx.build_diff_context(".", "HEAD~1..HEAD")
print(diffctx.to_yaml(ctx))
```

The canonical CLI is `treemapper` (installed via the dependency).
