-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (87 loc) · 2.07 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (87 loc) · 2.07 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 = "exasol-telemetry-client"
version = "0.1.5"
description = ""
authors = [{ name = "Exasol AG", email = "opensource@exasol.com" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = "MIT"
keywords = [
"exasol",
"telemetry",
]
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 = [
"requests>=2.33.0,<3",
"urllib3>=2.6.3,<3",
]
dynamic = ["dependencies"]
[dependency-groups]
dev = [
"exasol-toolbox>=10.0.0,<11",
"types-requests>=2.32.4.20260107,<3",
"poetry>=2.4.1,<3",
]
[tool.poetry]
requires-poetry = ">=2.3.0"
packages = [
{ include = "exasol/telemetry/client" },
]
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[project.urls]
Homepage = "https://github.com/exasol/telemetry-client-python"
Repository = "https://github.com/exasol/telemetry-client-python"
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
log_cli = false
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[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.mypy.overrides]]
module = [
"test.*",
]
ignore_errors = true
[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:telemetry-client-python"
host.url = "https://sonarcloud.io"
organization = "exasol"