-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
124 lines (116 loc) · 4.27 KB
/
Copy pathpyproject.toml
File metadata and controls
124 lines (116 loc) · 4.27 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "cbicall"
dynamic = ["version"]
description = "Configuration-driven framework for reproducible variant calling"
readme = "README.md"
requires-python = ">=3.8"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
authors = [
{ name = "Manuel Rueda", email = "manuel.rueda@cnag.eu" },
]
keywords = [
"bioinformatics",
"genomics",
"variant-calling",
"workflow",
"reproducibility",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"gdown>=5.0",
"jsonschema>=4.18",
"PyYAML>=6.0",
]
[project.optional-dependencies]
snakemake = [
"pulp==2.6.0",
"snakemake",
]
multiqc = ["multiqc"]
all = [
"multiqc",
"pulp==2.6.0",
"snakemake",
]
test = [
"pytest>=7",
"pytest-cov>=4",
]
build = [
"build>=1.2",
"twine>=5",
]
[project.scripts]
cbicall = "cbicall.__main__:console_main"
[project.urls]
Homepage = "https://cnag-biomedical-informatics.github.io/cbicall/"
Documentation = "https://cnag-biomedical-informatics.github.io/cbicall/"
Repository = "https://github.com/CNAG-Biomedical-Informatics/cbicall"
Issues = "https://github.com/CNAG-Biomedical-Informatics/cbicall/issues"
Changelog = "https://github.com/CNAG-Biomedical-Informatics/cbicall/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "src/cbicall/__about__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/cbicall"]
[tool.hatch.build.targets.wheel.force-include]
"browser/README" = "cbicall/_runtime/browser/README"
"browser/mtb2html.py" = "cbicall/_runtime/browser/mtb2html.py"
"browser/mtb2json.py" = "cbicall/_runtime/browser/mtb2json.py"
"mtdna/MToolBox_config.sh" = "cbicall/_runtime/mtdna/MToolBox_config.sh"
"workflows" = "cbicall/_runtime/workflows"
"resources" = "cbicall/_runtime/resources"
"tests/fixtures/integration" = "cbicall/_runtime/tests/fixtures/integration"
"examples/input/mit_cohort.yaml" = "cbicall/_runtime/examples/input/mit_cohort.yaml"
"examples/input/mit_single.yaml" = "cbicall/_runtime/examples/input/mit_single.yaml"
"examples/input/nf-core-demo.yaml" = "cbicall/_runtime/examples/input/nf-core-demo.yaml"
"examples/input/nf-core-sarek.yaml" = "cbicall/_runtime/examples/input/nf-core-sarek.yaml"
"examples/input/param.yaml" = "cbicall/_runtime/examples/input/param.yaml"
"examples/input/sample_map.tsv" = "cbicall/_runtime/examples/input/sample_map.tsv"
"examples/input/sarek_samplesheet.csv" = "cbicall/_runtime/examples/input/sarek_samplesheet.csv"
"examples/input/wes_cohort.yaml" = "cbicall/_runtime/examples/input/wes_cohort.yaml"
"examples/input/wes_cromwell.yaml" = "cbicall/_runtime/examples/input/wes_cromwell.yaml"
"examples/input/wes_single.yaml" = "cbicall/_runtime/examples/input/wes_single.yaml"
"examples/input/CNAG999_exome/CNAG99901P_ex/CNAG99901P_ex_S2_L001_R1_001.fastq.gz" = "cbicall/_runtime/examples/input/CNAG999_exome/CNAG99901P_ex/CNAG99901P_ex_S2_L001_R1_001.fastq.gz"
"examples/input/CNAG999_exome/CNAG99901P_ex/CNAG99901P_ex_S2_L001_R2_001.fastq.gz" = "cbicall/_runtime/examples/input/CNAG999_exome/CNAG99901P_ex/CNAG99901P_ex_S2_L001_R2_001.fastq.gz"
"scripts/download_cbicall_bundle.py" = "cbicall/_runtime/scripts/download_cbicall_bundle.py"
[tool.hatch.build.targets.sdist]
include = [
"/bin/cbicall",
"/browser/README",
"/browser/mtb2html.py",
"/browser/mtb2json.py",
"/CHANGELOG.md",
"/examples/input/*.csv",
"/examples/input/*.tsv",
"/examples/input/*.yaml",
"/examples/input/CNAG999_exome/CNAG99901P_ex/*.fastq.gz",
"/LICENSE",
"/mtdna/MToolBox_config.sh",
"/pyproject.toml",
"/README.md",
"/resources",
"/scripts/download_cbicall_bundle.py",
"/src/cbicall",
"/tests/fixtures/integration",
"/workflows",
]