Metadata-Version: 2.4
Name: dictdiffer
Version: 0.10.0
Summary: Dictdiffer is a library that helps you to diff and patch dictionaries.
Project-URL: Changelog, https://github.com/inveniosoftware/dictdiffer/blob/master/CHANGES
Project-URL: Docs, https://dictdiffer.rtfd.io/
Project-URL: Homepage, https://github.com/inveniosoftware/dictdiffer
Author-email: Invenio Collaboration <info@inveniosoftware.org>
License-Expression: MIT
License-File: AUTHORS
License-File: LICENSE
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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 :: 3.9
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Provides-Extra: docs
Requires-Dist: sphinx-rtd-theme>=0.2; extra == 'docs'
Requires-Dist: sphinx>=3; extra == 'docs'
Provides-Extra: numpy
Requires-Dist: numpy>=1.20.0; extra == 'numpy'
Provides-Extra: tests
Requires-Dist: mock>=1.3.0; extra == 'tests'
Requires-Dist: pycodestyle>=2.10.0; extra == 'tests'
Requires-Dist: pytest-cov>=2.10.1; extra == 'tests'
Requires-Dist: pytest-isort>=1.2.0; extra == 'tests'
Requires-Dist: pytest-pydocstyle>=2.2.0; extra == 'tests'
Requires-Dist: pytest<9,>=6; extra == 'tests'
Requires-Dist: sphinx>=3; extra == 'tests'
Requires-Dist: tox>=3.7.0; extra == 'tests'
Description-Content-Type: text/x-rst

============
 Dictdiffer
============

.. image:: https://github.com/inveniosoftware/dictdiffer/workflows/CI/badge.svg
        :target: https://github.com/inveniosoftware/dictdiffer/actions

.. image:: https://img.shields.io/coveralls/inveniosoftware/dictdiffer.svg
        :target: https://coveralls.io/r/inveniosoftware/dictdiffer

.. image:: https://img.shields.io/github/tag/inveniosoftware/dictdiffer.svg
        :target: https://github.com/inveniosoftware/dictdiffer/releases

.. image:: https://img.shields.io/pypi/dm/dictdiffer.svg
        :target: https://pypi.python.org/pypi/dictdiffer

.. image:: https://img.shields.io/github/license/inveniosoftware/dictdiffer.svg
        :target: https://github.com/inveniosoftware/dictdiffer/blob/master/LICENSE

About
=====

Dictdiffer is a helper module that helps you to diff and patch
dictionaries.


Installation
============

Dictdiffer is on PyPI so all you need is: ::

    pip install dictdiffer


Documentation
=============

Documentation is readable at https://dictdiffer.readthedocs.io or can be
built using Sphinx: ::

    pip install dictdiffer[docs]
    python setup.py build_sphinx


Testing
=======

Running the test suite is as simple as: ::

    ./run-tests.sh
