Metadata-Version: 2.1
Name: string-comparison
Version: 0.2.0
Summary: Utility to assist with string comparisons.
Home-page: https://github.com/bbelyeu/string_comparison/
Author: Brad Belyeu
Author-email: bradley.belyeu@life.church
License: MIT
Download-URL: https://github.com/bbelyeu/string_comparison/archive/0.2.0.zip
Keywords: unicode
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >3.7.0
Description-Content-Type: text/markdown

# dlite

Text normalization for string comparison in Python.

## Requirements

This project requires Python 3.7+

## Installation

To install with pip

    pip install dlite

## Usage

    import dlite
    normalized = dlite.align("é")
    assert normalized == "e"


