forked from nanoporetech/qcat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (41 loc) · 1.14 KB
/
setup.py
File metadata and controls
45 lines (41 loc) · 1.14 KB
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
"""
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',
'six',
'pyyaml'
],
extras_require={
'DOCS': ['sphinx>=1.3.1'],
},
tests_require=[
'pytest-runner',
'pytest',
'pytest-cov',
],
packages=[
'qcat'
],
package_data={
'qcat': [
'resources/kits/*',
]
},
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']}
)