forked from cfe-lab/MiCall
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
33 lines (28 loc) · 1.14 KB
/
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
32
33
import setuptools
from distutils.core import setup, Extension
import sys
if sys.version_info < (3,):
print('Sorry, MiCall-Lite requires Python version 3+.')
print('Try Micall:\n http://github.com/cfe-lab/MiCall')
sys.exit()
with open('README.md') as fh:
long_description = fh.read()
setup(
name='MiCall-Lite',
version='v0.1',
author=['Art Poon', 'Don Kirkby', 'Eric Martin', 'Richard H. Liang'],
author_email='[email protected]',
description='Pipeline for processing FASTQ data from an Illumina MiSeq for human RNA virus (HIV, hepatitis C virus) genotyping',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/PoonLab/MiCall-Lite",
packages=['micall', 'micall.core', 'micall.utils', 'micall.alignment'],
scripts=['bin/micall'],
ext_modules=[Extension('micall.alignment._gotoh2',
sources=['micall/alignment/src/_gotoh2.c'],
extra_compile_args=["-std=c99"])],
package_data={'micall':
['projects.json',
'alignment/models/*.csv'],
}
)