diff --git a/goombay/__init__.py b/goombay/__init__.py new file mode 100644 index 0000000..3ae33be --- /dev/null +++ b/goombay/__init__.py @@ -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 diff --git a/limestone/algorithms/__init__.py b/goombay/algorithms/__init__.py similarity index 100% rename from limestone/algorithms/__init__.py rename to goombay/algorithms/__init__.py diff --git a/limestone/algorithms/base.py b/goombay/algorithms/base.py similarity index 100% rename from limestone/algorithms/base.py rename to goombay/algorithms/base.py diff --git a/limestone/algorithms/editdistance.py b/goombay/algorithms/editdistance.py similarity index 100% rename from limestone/algorithms/editdistance.py rename to goombay/algorithms/editdistance.py diff --git a/limestone/benchmarks.py b/goombay/benchmarks.py similarity index 100% rename from limestone/benchmarks.py rename to goombay/benchmarks.py diff --git a/limestone/utils.py b/goombay/utils.py similarity index 100% rename from limestone/utils.py rename to goombay/utils.py diff --git a/limestone/__init__.py b/limestone/__init__.py deleted file mode 100644 index ebea40e..0000000 --- a/limestone/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -from limestone.algorithms.base import GLOBALBASE -from limestone.algorithms.base import LOCALBASE -from limestone.algorithms.editdistance import hamming -from limestone.algorithms.editdistance import jaro -from limestone.algorithms.editdistance import jaro_winkler -from limestone.algorithms.editdistance import hirschberg -from limestone.algorithms.editdistance import lowrance_wagner -from limestone.algorithms.editdistance import needleman_wunsch -from limestone.algorithms.editdistance import smith_waterman -from limestone.algorithms.editdistance import wagner_fischer -from limestone.algorithms.editdistance import waterman_smith_beyer -from limestone.algorithms.editdistance import longest_common_subsequence -from limestone.algorithms.editdistance import shortest_common_supersequence -from limestone.algorithms.editdistance import gotoh -from limestone.algorithms.editdistance import gotoh_local diff --git a/pyproject.toml b/pyproject.toml index b3aa1c5..f237b3d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["hatchling"] build-backend = "hatchling.build" [project] -name = "limestone" +name = "goombay" version = "0.13.0" authors = [ { name ="Andrew Hennis", email="andrew.mr.hennis@gmail.com" }, @@ -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" diff --git a/setup.py b/setup.py index e06b6ad..5931a7e 100644 --- a/setup.py +++ b/setup.py @@ -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' )