Skip to content

Commit

Permalink
project description update
Browse files Browse the repository at this point in the history
  • Loading branch information
dawnandrew100 committed Nov 19, 2024
1 parent a3fc928 commit 5796ac9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 22 deletions.
8 changes: 0 additions & 8 deletions goombay/algorithms/base.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
try:
# external dependencies
import numpy
from numpy import float64
from numpy._typing import NDArray
except ImportError:
raise ImportError("Please pip install all dependencies from requirements.txt!")

class GLOBALBASE():
def matrix(self, querySequence: str, subjectSequence: str)->list[list[float]]:
matrix, _ = self(querySequence, subjectSequence)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ build-backend = "hatchling.build"

[project]
name = "goombay"
version = "0.13.2"
version = "0.13.3"
authors = [
{ name ="Andrew Hennis", email="andrew.mr.hennis@gmail.com" },
]
desctiption = "Simple python implementation of text alignment meant for increased functionality."
description = "Python implementation of several sequence alignment algorithms such as Waterman-Smith-Beyer, Gotoh, and Needleman-Wunsch intended to calculate distance, show alignment, and display the underlying matrices."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
Expand Down
15 changes: 3 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
#!/usr/bin/env python3
# external
from setuptools import setup
# builtin
import setuptools

setup(
name='goombay',
version='0.13.2',

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

url='https://github.com/dawnandrew100/goombay'
)
setuptools.setup()

0 comments on commit 5796ac9

Please sign in to comment.