Skip to content

Commit

Permalink
updating names to avoid naming conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
dawnandrew100 committed Nov 15, 2024
1 parent 70ef19e commit 23d18ee
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
15 changes: 15 additions & 0 deletions goombay/__init__.py
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.
15 changes: 0 additions & 15 deletions limestone/__init__.py

This file was deleted.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]" },
Expand All @@ -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"
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
from setuptools import setup

setup(
name='limestone',
name='goombay',
version='0.13.0',

packages=['limestone'],
packages=['goombay'],
package_data={'': ['*.py']},
python_requires='>=3.9',

url='https://github.com/dawnandrew100/limestone'
url='https://github.com/dawnandrew100/goombay'
)

0 comments on commit 23d18ee

Please sign in to comment.