Metadata-Version: 2.4
Name: tardiff2
Version: 0.1.1
Summary: Utility to compare differences in tar files
Author-email: James Knight <git@jdknight.me>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Utilities
License-File: LICENSE
Requires-Dist: prettytable
Project-URL: Download, https://pypi.python.org/pypi/tardiff2
Project-URL: Source, https://github.com/jdknight/tardiff2

# tardiff2

Provides a utility to compare two (or more) tar files. This is aimed to
be a helper when comparing evolving tar files, allowing sanity checks to
expected file lists, modes, ownerships and more.

## Installation

This tool can be installed using [pip][pip] or [pipx][pipx]:

```shell
pipx install tardiff2
 (or)
pip install -U tardiff2
 (or)
python -m pip install -U tardiff2
```

## Usage

This tool can be invoked from a command line using:

```shell
tardiff2 --help
 (or)
python -m tardiff2 --help
```

For example:

```shell
tardiff2 libfoo-1.0.0.tar.gz libfoo-1.1.0.tar.gz
```


[pip]: https://pip.pypa.io/
[pipx]: https://pipx.pypa.io/

