-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·57 lines (53 loc) · 1.48 KB
/
setup.cfg
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
49
50
51
52
53
54
55
56
57
[metadata]
name = covtrim
version = 0.1.0
author = Gurasis Osahan
author_email = [email protected]
description = CovTrim is a specialized bioinformatics tool designed for precise coverage-based downsampling of FASTQ files from amplicon sequencing data.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/phac-nml/covtrim
project_urls =
Documentation = https://github.com/phac-nml/covtrim/blob/main/README.md
Source Code = https://github.com/phac-nml/covtrim
Bug Tracker = https://github.com/phac-nml/covtrim/issues
FAQ = https://github.com/phac-nml/covtrim/wiki/FAQ
license = Apache License 2.0
license_files = LICENSE
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Bio-Informatics
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords =
bioinformatics
genomics
NGS
pipeline
amplicon
coverage
fastq
sequencing
[options]
packages = find:
zip_safe = False
include_package_data = True
python_requires = <3.11
install_requires =
pysam
numpy
pandas
[options.entry_points]
console_scripts =
covtrim = covtrim.covtrim_main:main
[options.extras_require]
test =
pytest
coverage
[options.packages.find]
exclude =
tests