-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (25 loc) · 1022 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
27
28
29
30
31
#!/usr/bin/env python
import numpy as np
from setuptools import find_packages, setup
from setuptools.extension import Extension
from Cython.Build import cythonize
extensions = cythonize([
Extension("ssw_aligner.ssw_wrapper",
["ssw_aligner/ssw_wrapper.pyx",
"ssw_aligner/_lib/ssw.c"],
extra_compile_args=['-Wno-error=declaration-after-statement'])
])
setup(name='ssw_aligner',
version='0.0.8',
license='MIT',
description='Python implementation of Striped Smith-Waterman Algorithm',
long_description='Python implementation of Striped Smith-Waterman Algorithm(one of the local alignment algorithms). Please visit the github page for more details.',
author="kyu999",
author_email="kyukokkyou999@gmail.com",
maintainer="kyu999",
maintainer_email="kyukokkyou999@gmail.com",
url='https://github.com/kyu999/ssw_aligner',
packages=find_packages(),
ext_modules=extensions,
include_dirs=[np.get_include()]
)