Metadata-Version: 1.1
Name: pylev2
Version: 1.0.0-beta
Summary: A Levenshtein implementation with a premissive license.
Home-page: https://github.com/JohnDoee/pylev2/
Author: Anders Jensen
Author-email: johndoee+pylev2@tidalstream.org
License: MIT
Description: pylev2
        ======
        
        A Levenshtein implementation with a premissive license.
        Intended to be a semi-dropin replacement for pylev and to be faster by leveraging a C extension.
        
        Requirements
        ------------
        
        * C compiler
        * Only tested with Python 2.7
        
        Usage
        -----
        
        Simple example.::
        
            import pylev2
            distance = pylev2.levenshtein('kittens', 'sitting')
            assert(distance, 3)
        
        Changing from pylev to pylev2
        -----------------------------
        
        Replace all instances of pylev with pylev2, please note that pylev2 does not support
        the functions with spelling errors or the classic version.
        
        Tests
        -----
        
        Setup::
        
            $ virtualenv .env
            $ .env/bin/pip install git+https://github.com/JohnDoee/pylev2.git
        
        Running::
        
            $ python -m unittest pylev2.tests
        
        
        License
        --------
        MIT, see LICENSE
        
        History
        -------
        
        Uses semantic versioning
        
        * v1.0.0-beta
        
            * Initial release.
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
