-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace python-Levenshtein with rapidfuzz
- Loading branch information
1 parent
04deff5
commit a98d0e8
Showing
12 changed files
with
70 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,9 @@ def open_file(fname): | |
author='Adam Cohen', | ||
author_email='[email protected]', | ||
packages=['thefuzz'], | ||
extras_require={'speedup': ['python-levenshtein>=0.12']}, | ||
# keep for backwards compatibility of projects depending on `thefuzz[speedup]` | ||
extras_require={'speedup': []}, | ||
install_requires= ['rapidfuzz>=2.1.2'], | ||
url='https://github.com/seatgeek/thefuzz', | ||
license="GPLv2", | ||
classifiers=[ | ||
|
@@ -41,4 +43,5 @@ def open_file(fname): | |
description='Fuzzy string matching in python', | ||
long_description=open_file('README.rst').read(), | ||
zip_safe=True, | ||
python_requires='>=3.7' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.