forked from sinzlab/compenv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
90 lines (77 loc) · 1.72 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[project]
name = "compenv"
description = "Track information about the execution environment of computations"
readme = "README.md"
authors = [
{name = "Christoph Blessing", email = "[email protected]"},
]
dependencies = [
"datajoint==0.12.9",
]
requires-python = ">=3.8"
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/sinzlab/compenv"
[project.optional-dependencies]
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[tool]
[tool.pdm]
version = {use_scm = true}
[tool.pdm.dev-dependencies]
dev = [
"pytest~=6.2",
"pylint~=2.8",
"flake8~=3.9",
"isort~=5.8",
"mypy~=0.812",
"flake8-docstrings~=1.6",
"pytest-cov~=2.11",
"docker~=5.0",
"pymysql~=1.0",
"black>=22.6.0",
"debugpy>=1.6.2",
]
[tool.pdm.scripts]
test = "pytest -k 'not slow'"
cov = {composite = ["test --cov"]}
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 120
skip_gitignore = true
[tool.pylint.master]
max-line-length = 120
ignore-patterns = ["test_.*\\.py", "conftest\\.py", ".*.pyi"]
[tool.pylint.messages_control]
enable = ["useless-suppression"]
disable = [
"no-value-for-parameter",
"trailing-whitespace",
"trailing-newlines",
]
[tool.mypy]
python_version = "3.8"
files = [
"compenv",
"tests/unit",
]
strict = true
mypy_path = "stubs"
[tool.coverage.run]
branch = true
source = ["compenv"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"]
[tool.pytest.ini_options]
addopts = ["--quiet", "--strict-markers"]
testpaths = [
"tests",
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')"
]