Metadata-Version: 2.1
Name: git-diff-lines
Version: 0.0.1
Summary: Get a list of changed lines in git diff.
Home-page: https://github.com/tom-010/git_diff_lines
Author: Thomas Deniffel
Author-email: tdeniffel@gmail.com
License: Apache2
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

git_diff_lines
==============

Get a list of changed lines in git diff.

It does this by running `git diff` in the respective directory 
and parses the output. It converts the output into a list of 
tuples in the form `(filename, line_number)` for every line in
every file.


