Metadata-Version: 2.4
Name: litediff
Version: 0.1.1
Summary: A short description of my package.
Home-page: https://github.com/mingthor/litediff
Author: mingthor
Author-email: gaomingduke@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-python
Dynamic: summary

# LiteDiff
A file or directory diff web app

# Get Started

1. Install, `pip install litediff==0.1.1`

2. Start LiteDiff server, `litediff`

# Develop

## Install Dependencies
1. `pip install Flask`

## Run App
1. `python app.py`
2. Open browser on http://127.0.0.1:5000

## Test
1. `PYTHONPATH=. pytest litediff/tests/test_diff_logic.py`

## Publish

1. Install Packaging Tools, 
`pip install setuptools wheel twine`

2. Cleanup Build Artifacts, `rm -rf dist/ build/ *.egg-info/`

3. Build Distribution, `python setup.py sdist bdist_wheel`

3. Upload to PyPI, `twine upload dist/*`
