generated from microsoft/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (62 loc) · 1.39 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
[tool.poetry]
name = "sr2silo"
version = "0.1.0"
description = "short-read to silo"
authors = ["Gordon Julian Koehn <gordon.koehn@dbsse.ethz.ch>"]
readme = "README.md"
packages = [{ include = "sr2silo", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
pysam = "^0.22.1"
pyyaml = "^6.0.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
ruff = "^0.0.253"
black = "^24.8.0"
pytest-cov = "^4.0.0"
pytest-xdist = "^3.2.0"
pre-commit = "^3.1.0"
interrogate = "^1.5.0"
pyright = "^1.1.309"
mkdocs-material = "^9.1.6"
mkdocstrings = { extras = ["python"], version = "^0.21.2" }
mkdocs-gen-files = "^0.4.0"
mkdocs-literate-nav = "^0.6.0"
setuptools = "^74.1.2"
[tool.coverage.report]
fail_under = 85.0
[tool.interrogate]
ignore-init-method = false
ignore-init-module = false
ignore-magic = true
ignore-semiprivate = true
ignore-private = true
ignore-property-decorators = false
ignore-module = false
fail-under = 95
exclude = ["setup.py", "docs", "build", "scripts/dgicev"]
ignore-regex = ["^get$", "^mock_.*", ".*BaseClass.*"]
verbose = 2
quiet = false
whitelist-regex = []
color = true
[tool.pyright]
include = ["src"]
exclude = [
"**/node_modules",
"**/__pycache__",
"src/experimental",
"src/typestubs",
"scripts",
]
[tool.ruff]
exclude = ["scripts"]
[tool.black]
exclude = '''
/(
scripts
)/
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"