Skip to content

Commit

Permalink
add levenshtein as requirement for fuzzywuzzy
Browse files Browse the repository at this point in the history
  • Loading branch information
DhanshreeA committed Aug 31, 2023
1 parent 3573d50 commit bcd4a61
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,14 @@ pytest = {version = "^7.4.0", optional = true}
fuzzywuzzy = {version = "^0.18.0", optional = true}
sphinx = {version = ">=5.3.0", optional = true} # For compatibility with python 3.7.x
jinja2 = {version = "^3.1.2", optional = true}
levenshtein = {version = "^0.21.1", optional = true} # For faster fuzzy search


[tool.poetry.extras]
# Instead of using poetry dependency groups, we use extras to make it pip installable
lake = ["isaura"]
docs = ["sphinx", "jinja2"]
test = ["pytest", "fuzzywuzzy"]
test = ["pytest", "fuzzywuzzy", "levenshtein"]
#all = [lake, docs, test]

[tool.poetry.scripts]
Expand Down

0 comments on commit bcd4a61

Please sign in to comment.