Metadata-Version: 1.1
Name: pylev
Version: 1.0.0
Summary: A pure Python Levenschtein implementation that's not freaking GPL'd.
Home-page: http://github.com/toastdriven/pylev
Author: Daniel Lindsley
Author-email: daniel@toastdriven.com
License: UNKNOWN
Description: pylev
        =====
        
        A pure Python Levenschtein implementation that's not freaking GPL'd.
        
        Based off the Wikipedia code samples at
        http://en.wikipedia.org/wiki/Levenshtein_distance.
        
        Usage
        -----
        
        Usage is fairly straightforward.::
        
            import pylev
            distance = pylev.levenschtein('kitten', 'sitting')
            assert(distance, 3)
        
        
        License
        -------
        
        New BSD.
        
        
        Tests
        -----
        
        Setup::
        
            $ git clone https://github.com/toastdriven/pylev.git
            $ cd pylev
            $ virtualenv env --distribute
            $ . env/bin/activate
            $ pip install unittest2
        
        Running::
        
            $ python -m unittest2 tests
        
        
        Version History
        ---------------
        
        * v1.0.0
        
            * Initial release, just the naive implementation of Levenschtein.
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
