Metadata-Version: 2.1
Name: diff-tool
Version: 1.0.0
Summary: Display a diff between two files in HTML.
Home-page: http://github.com/justintime50/diff
Author: Justintime50
License: MIT
Description: <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
        
        ```
        Usage:
            diff-tool -f1 /path/to/file1.txt -f2 /path/to/file2.txt > diff.html
        
            open diff.html
        
        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.
        ```
        
        1) Place the contents of the older file in `f1.html` and the contents of the newer file in `f2.html`. **Just think "New in 2".**
        2) Run the script and it will generate an HTML file.
        3) Open the HTML file in a browser and view the diff.
        
        ## Development
        
        Install project with dev depencencies:
        
        ```bash
        pip3 install -e ."[dev]"
        ```
        
        Lint the project:
        
        ```bash
        pylint diff/*.py
        ```
        
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
Provides-Extra: dev
