-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 963 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
setup(
name="affine-gaps",
version="1.0.0",
author="Ash Vardanian",
author_email="[email protected]",
description="Numba-accelerated Python implementation of affine gap penalty extensions for Needleman-Wunsch and Smith-Waterman algorithms",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/ashvardanian/affine-gaps",
py_modules=["affine_gaps"],
install_requires=["numba", "numpy", "colorama"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
extras_require={"dev": ["biopython", "stringzilla", "pytest", "pytest-repeat"]},
entry_points={
"console_scripts": [
"affine-gaps=affine_gaps:main",
],
},
)