-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 995 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
# https://packaging.python.org/tutorials/distributing-packages/
import sys
from distutils.core import setup
python_requires='>=3',
PACKAGE_NAME="decont"
PACKAGE_VERSION="0.5"
PACKAGE_BUGREPORT="[email protected]"
setup(name = PACKAGE_NAME,
version = PACKAGE_VERSION,
description="Decontaminate FastQ files by mapping with BWA-MEM against a given source",
author="Andreas Wilm",
author_email=PACKAGE_BUGREPORT,
#requires = [], samtools and bwa-mem?
scripts = [
"decont.py",
],
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=['Environment :: Console',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='bioinformatics'
)