-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (90 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (90 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
103
104
105
[project]
name = "exasol-udf-mock-python"
version = "0.5.0"
description = "Mocking framework for Exasol Python UDFs"
authors = [{ name = "Torsten Kilias", email = "torsten.kilias@exasol.com" }]
requires-python = ">=3.10.0,<4.0"
readme = "README.rst"
license = "MIT"
keywords = [
"exasol",
"udf",
"mock",
"testing",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"pandas>=2.2.3,<3",
"numpy>=1.26.4,<3",
]
dynamic = ["dependencies"]
[project.urls]
repository = "https://github.com/exasol/udf-mock-python"
homepage = "https://github.com/exasol/udf-mock-python"
[dependency-groups]
dev = [
"exasol-toolbox>=10.2.0,<11",
"pandas-stubs>=2.3.3.251219,<3",
"pytest>=8.2.2,<10",
"pytest-cov>=5.0.0,<6",
]
[tool.poetry]
requires-poetry = ">=2.3.0"
packages = [
{ include = "exasol_udf_mock_python" },
]
include = [
"README.rst",
"doc/changes/changelog.md",
"LICENSE",
]
[tool.coverage.run]
relative_files = true
source = [
"exasol_udf_mock_python",
]
[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 = 6.7
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[[tool.mypy.overrides]]
module = [
"test.unit.*",
"test.integration.*",
]
ignore_errors = true
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff.lint]
extend-ignore = [
"E", # Syntax errors
"F", # Pyflakes rules (excluding F401)
"UP", # pyupgrade rules
"D", # Docstring rules
]
extend-select = ["F401"]
unfixable = []
[tool.sonar]
projectKey = "com.exasol:udf-mock-python"
host.url = "https://sonarcloud.io"
organization = "exasol"