-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (61 loc) · 1.66 KB
/
pyproject.toml
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
[project]
name = "bonsai-prp"
dynamic = ["version"]
authors = [
{name = "Markus Johansson", email = "[email protected]"},
{name = "Ryan Kennedy", email = "[email protected]"},
]
description = "Pipline result processing program for the JASEN pipeline and Bonsai tool."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"setuptools",
"wheel",
"click==8.1.7",
"pydantic==2.5.2",
"pandas==2.1.3",
"Biopython==1.83",
"cyvcf2",
"pysam",
"pyyaml",
"requests"
]
[project.urls]
Repository = "https://github.com/Clinical-Genomics-Lund/"
Issues = "https://github.com/Clinical-Genomics-Lund/bonsai-prp/issues"
Changelog = "https://github.com/Clinical-Genomics-Lund/CHANGELOG.md"
[project.scripts]
prp = "prp.cli:cli"
[project.optional-dependencies]
dev = [
"pylint ~=3.0.2",
"black ~=23.11.0",
"isort ~=5.12.0",
]
test = [
"pytest-cov ~=4.1.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "prp.VERSION"}
[tool.isort]
profile = "black"
[tool.pylint]
max-line-length = 88
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 95"
[tool.coverage.run]
source = ["prp"]
[tool.pylint.TYPECHECK]
generated-members = "pysam.asTuple,pysam.TabixFile,pysam.AlignmentFile"