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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
"""
Qcat setup script
Copyright (c) 2018 by Oxford Nanopore Technologies Ltd.
"""
from setuptools import setup
from qcat import __version__
setup(
name='qcat',
version=__version__,
url='https://github.com/nanoporetech/qcat/',
license='Mozilla Public License Version 2.0',
description="Qcat is Python command-line tool for demultiplexing Oxford Nanopore reads from FASTQ files",
author='Oxford Nanopore Technologies Ltd.',
author_email='philipp.rescheneder@nanoporetech.com',
install_requires=[
'biopython',
'parasail',
'pyyaml'
],
extras_require={
'DOCS': ['sphinx>=1.3.1'],
},
tests_require=[
'pytest-runner',
'pytest',
'pytest-cov',
],
packages=[
'qcat',
'qcat.test'
],
package_data={
'qcat': [
'resources/kits/*',
],
'qcat.test': [
'data/*.fastq',
]
},
entry_points={"console_scripts": ['qcat = qcat.cli:main',
'qcat-eval = qcat.eval:main',
'qcat-roc = qcat.eval_roc:main',
'qcat-eval-truth = qcat.eval_full:main']}
)
|