-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating names to avoid naming conflict
- Loading branch information
1 parent
70ef19e
commit 23d18ee
Showing
9 changed files
with
21 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from goombay.algorithms.base import GLOBALBASE | ||
from goombay.algorithms.base import LOCALBASE | ||
from goombay.algorithms.editdistance import hamming | ||
from goombay.algorithms.editdistance import jaro | ||
from goombay.algorithms.editdistance import jaro_winkler | ||
from goombay.algorithms.editdistance import hirschberg | ||
from goombay.algorithms.editdistance import lowrance_wagner | ||
from goombay.algorithms.editdistance import needleman_wunsch | ||
from goombay.algorithms.editdistance import smith_waterman | ||
from goombay.algorithms.editdistance import wagner_fischer | ||
from goombay.algorithms.editdistance import waterman_smith_beyer | ||
from goombay.algorithms.editdistance import longest_common_subsequence | ||
from goombay.algorithms.editdistance import shortest_common_supersequence | ||
from goombay.algorithms.editdistance import gotoh | ||
from goombay.algorithms.editdistance import gotoh_local |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ requires = ["hatchling"] | |
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "limestone" | ||
name = "goombay" | ||
version = "0.13.0" | ||
authors = [ | ||
{ name ="Andrew Hennis", email="[email protected]" }, | ||
|
@@ -21,5 +21,5 @@ dependencies = [ | |
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/dawnandrew100/limestone" | ||
Issues = "https://github.com/dawnandrew100/limestone/issues" | ||
Homepage = "https://github.com/dawnandrew100/goombay" | ||
Issues = "https://github.com/dawnandrew100/goombay/issues" |
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