-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (89 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (89 loc) · 2.06 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
[project]
name = "bqp-database-access"
version = "0.3.33"
description = ""
authors = [
{ name = "Martin Ruefenacht", email = "martin.ruefenacht@lrz.de" },
{ name = "Tobias Bauer", email = "Tobias.Bauer@lrz.de" },
{ name = "Ege Özmeral", email = "Nazim.Oezmeral@lrz.de" },
{ name = "Trang Huynh", email = "Trang.Huynh@lrz.de" }
]
dependencies = [
"pony>=0.7.19",
"bcrypt>=4.0",
"psycopg2-binary>=2.9.10",
"numpy>=2.2.6",
"eliot>=1.17.5",
"cffi>=2.0.0",
"werkzeug>=3.1.4",
"fixture>=1.5.11",
"python-dotenv>=1.2.2",
]
requires-python = ">=3.10,<3.12"
readme = "README.md"
license = { text = "MIT" }
[tool.setuptools]
packages = ["bqp_database_access"]
[project.optional-dependencies]
dev = [
"black>=25.1.0",
"isort>=6.0.0",
"mypy>=1.14.1",
"pylint>=3.3.8",
"pre-commit>=4.1.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.2",
"mkdocstrings[python]>=0.26.1",
"mkdocs-autorefs>=1.2.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.isort]
profile = "black"
[tool.pylint.'MESSAGES CONTROL']
disable = [
"too-many-arguments",
"too-many-nested-blocks",
"too-few-public-methods",
"too-many-instance-attributes",
"too-many-branches",
"too-many-function-args",
"W0511",
"import-outside-toplevel",
"missing-docstring",
"E1101",
]
[tool.pylint.'SIMILARITIES']
min-similarity-lines = 8
ignore-imports = "yes"
[tool.pylint.'FORMAT']
max-line-length = 95
max-positional-arguments = 10
[tool.black]
target-version = ['py310']
addopts = [
"--cov=bqp_database_access",
"--cov-report=term-missing",
"--cov-report=xml",
]
[dependency-groups]
dev = [
"pytest>=7.4.2",
"pytest-cov>=6.2.1",
"pytest-env>=1.0.1",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.coverage.run]
source = ["bqp_database_access"]
omit = [
"bqp_database_access/_*.py",
"bqp_database_access/__*.py",
]
[tool.coverage.report]
show_missing = true
skip_covered = false