Metadata-Version: 2.1
Name: treediffer
Version: 0.0.1
Summary: A library of utility functions for coputing diffs between tree-like data structures.
Home-page: https://github.com/learningequality/treediffer
Author: Ivan Savov
Author-email: ivan@learningequality.org
License: MIT
Project-URL: Documentation, https://treediffer.readthedocs.io/
Project-URL: Changelog, https://treediffer.readthedocs.io/en/latest/changelog.html
Project-URL: Issue Tracker, https://github.com/learningequality/treediffer/issues
Description: treediffer
        ==========
        
        [![docs](https://readthedocs.org/projects/treediffer/badge/?style=flat)](https://readthedocs.org/projects/treediffer) 
        [![build](https://travis-ci.com/learningequality/treediffer.svg?branch=master)](https://travis-ci.com/github/learningequality/treediffer)
        
        
        A library of utility functions for computing diffs between tree-like data structures.
        
        
        
        <!--
        [![pypi](https://img.shields.io/pypi/pyversions/treediffer.svg)](https://pypi.python.org/pypi/treediffer/)
        [![codecov](https://codecov.io/gh/learningequality/treediffer/branch/master/graphs/badge.svg?branch=master)](https://codecov.io/github/learningequality/treediffer)
        [![version](https://img.shields.io/pypi/v/treediffer.svg)])https://pypi.org/project/treediffer)
        [![supported-implementations](https://img.shields.io/pypi/implementation/treediffer.svg)](https://pypi.org/project/treediffer)
        -->
        
        
        Installation
        ------------
        
            pip install treediffer
        
        
        
        Usage
        -----
        ```python
        
        from treediffer import treediff
        
        diff = treediff(maintree, stagingtree, preset="studio")
        
        ```
        
        Documentation
        -------------
        
        https://treediffer.readthedocs.io/
        
        
        
        
        TODOs
        -----
         -[ ] Finish basic functionality
         -[ ] Add kitchen sink test for combined deleted, added, moved, and modified
         
        
Keywords: tree,diff,differences,content
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Utilities
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Description-Content-Type: text/markdown
