Metadata-Version: 2.1
Name: diff-tool
Version: 1.0.1
Summary: Display a diff between two files in HTML.
Home-page: http://github.com/justintime50/diff
Author: Justintime50
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: argparse (>=1.4.0)
Provides-Extra: dev
Requires-Dist: pylint (>=2.5.0) ; extra == 'dev'

<div align="center">

# Diff

Display a diff between two files in HTML.

[![Build Status](https://travis-ci.com/Justintime50/diff.svg?branch=master)](https://travis-ci.com/Justintime50/diff)
[![Pypi](https://img.shields.io/pypi/v/diff-tool)](https://pypi.org/project/diff-tool)
[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php)

<img src="assets/showcase.png">

</div>

## Install

```bash
pip3 install diff-tool
```

## Usage

Running this tool requires two files to compare and will output the **diff**erence to `diff.html`.

```
Usage:
    diff-tool -f1 /path/to/file1.txt -f2 /path/to/file2.txt

Options:
    -h, --help                show this help message and exit
    -f1 FILE1, --file1 FILE1  The base file to compare a second file to.
    -f2 FILE2, --file2 FILE2  The second file compared to the base first file.
```

## Development

Install project with dev depencencies:

```bash
pip3 install -e ."[dev]"
```

Lint the project:

```bash
pylint diff/*.py
```


