Metadata-Version: 2.1
Name: dlite
Version: 0.1.1
Summary: Utility to assist with string comparisons.
Home-page: https://github.com/bbelyeu/dlite/
Author: Brad Belyeu
Author-email: bradley.belyeu@life.church
License: MIT
Download-URL: https://github.com/bbelyeu/dlite/archive/0.1.1.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"


