-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (81 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
88 lines (81 loc) · 2.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "viral-ngs"
dynamic = ["version"]
description = "Consolidated tools for viral NGS data analysis"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Broad Institute Viral Genomics", email = "viral-ngs@broadinstitute.org" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
keywords = ["bioinformatics", "genomics", "viral", "ngs", "sequencing"]
# Python dependencies for pip-based installs
# Note: For Docker-based usage, all deps (including bioinformatics tools) are
# installed via conda. See docker/requirements/core.txt
dependencies = [
"arrow>=0.12.1",
"biopython>=1.72",
"jinja2>=2.11.3",
"lz4>=2.2.1",
"matplotlib>=2.2.4",
"pandas>=2.0.0",
"psutil>=6.1.0",
"pybedtools>=0.7.10",
"pysam>=0.23.0",
"pyyaml>=6.0",
"scipy>=1.10.0",
"seaborn>=0.12.0",
"zstandard>=0.23.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-xdist",
"pytest-cov",
]
[project.scripts]
# Command-line entry points for viral-ngs tools
# Core commands
illumina = "viral_ngs.illumina:main"
read_utils = "viral_ngs.read_utils:main"
reports = "viral_ngs.reports:main"
file_utils = "viral_ngs.file_utils:main"
broad_utils = "viral_ngs.broad_utils:main"
# Assembly commands
assembly = "viral_ngs.assembly:main"
# Classification commands
metagenomics = "viral_ngs.metagenomics:main"
taxon_filter = "viral_ngs.taxon_filter:main"
kmer_utils = "viral_ngs.kmer_utils:main"
# Phylogenetics commands
interhost = "viral_ngs.interhost:main"
intrahost = "viral_ngs.intrahost:main"
ncbi = "viral_ngs.ncbi:main"
[project.urls]
Homepage = "https://github.com/broadinstitute/viral-ngs"
Repository = "https://github.com/broadinstitute/viral-ngs"
Issues = "https://github.com/broadinstitute/viral-ngs/issues"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]