Metadata-Version: 2.3
Name: tdiff
Version: 0.3.0
Summary: Textual diff application
Author: David Brochart
Author-email: David Brochart <david.brochart@gmail.com>
License: AGPL-3.0-or-later
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: anyio>=4.13.0,<5
Requires-Dist: cyclopts>=4.10.2,<5
Requires-Dist: textual-diff-view>=0.1.4,<1
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# tdiff

[![Build Status](https://github.com/davidbrochart/tdiff/workflows/test/badge.svg)](https://github.com/davidbrochart/tdiff/actions)

A Textual diff application.

## Usage

To diff two files:
```bash
tdiff path/to/file1 path/to/file2
```

To diff git changes:
```bash
tdiff git  # shows local git changes
tdiff git HEAD~2 HEAD~1
tdiff git 1a5d251eacd5a146d710f436592815ac2efa1b52
```
