-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (85 loc) · 2.22 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (85 loc) · 2.22 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 = "test-db-builder-python"
version = "1.0.1"
description = "Write compact code to setup up database contents in integration tests"
requires-python = ">=3.12,<3.14"
authors = [
{ name = "Sebastian Bär", email = "sebastian.baer@exasol.com" }
]
readme = "README.rst"
license = "MIT"
dynamic = ["classifiers", "dependencies"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Developers",
"Topic :: Database",
]
dependencies = [
"pyexasol>=2.0.0, <3",
"regex>=2025.11.3",
]
[project.urls]
Homepage = "https://www.exasol.com/"
Documentation = "https://exasol.github.io/test-db-builder-python/"
Source = "https://github.com/exasol/test-db-builder-python"
Issues = "https://github.com/exasol/test-db-builder-python/issues"
Changelog = "https://exasol.github.io/test-db-builder-python/changelog.html"
[tool.poetry]
requires-poetry = ">=2.3.0"
packages = [ {include = "exasol"}, ]
[dependency-groups]
dev = [
"exasol-integration-test-docker-environment>=5.0.0,<7",
"exasol-toolbox>=10.0.0, <11",
"pytest>=9.0.3,<10",
"pytest-exasol-backend>=1.3.0,<2",
"toml>=0.10.2",
"types-regex>=2025.11",
]
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
relative_files = true
source = [
"exasol",
]
[tool.coverage.report]
fail_under = 15
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
fail-under = 5.0
ignore = []
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.ruff.lint]
extend-ignore = [
"E", # Syntax errors
"F", # Pyflakes rules (excluding F401)
"UP", # pyupgrade rules
"D", # Docstring rules
]
extend-select = ["F401"]
unfixable = []
[[tool.mypy.overrides]]
module = [
"test.*",
]
ignore_errors = true
ignore_missing_imports = true
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.sonar]
projectKey = "com.exasol:test-db-builder-python"
host.url = "https://sonarcloud.io"
organization = "exasol"