-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (27 loc) · 834 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 python3
# Roger Volden
from setuptools import setup
from setuptools import find_packages
from Cython.Build import cythonize
with open('README.md', 'r') as fh:
long_description = fh.read()
ext_modules = cythonize('conk/conk.pyx')
setup(
name='conk',
version='1.0.0',
author='Roger Volden',
author_email='rvolden@ucsc.edu',
description='A modified SW aligner for C3POa',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/rvolden/conk',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
setup_requires=['cython'],
python_requires='>=3.5',
ext_modules=ext_modules,
)