-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (71 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
85 lines (71 loc) · 1.75 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
[project]
name = "exasol-developer-documentation"
version = "0.1.0"
description = "Documentation and resources for developing software and data science solutions and applications on top of the Exasol Analytics Engine."
authors = [{ name = "Torsten Kilias", email = "torsten.kilias@exasol.com" }]
requires-python = ">=3.10,<4.0"
readme = "README.md"
license = "MIT"
keywords = [
"exasol",
"developer_documentation",
]
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 = []
[project.urls]
repository = "https://github.com/exasol/developer-documentation"
homepage = "https://github.com/exasol/developer-documentation"
[build-system]
requires = [
"poetry>=2.3.0",
]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = ["exasol-toolbox>=6.1.1,<7"]
[tool.poetry]
requires-poetry = ">=2.1.0"
packages = [
{include = "exasol"},
]
[tool.coverage.run]
source = [
"exasol",
]
[tool.coverage.report]
fail_under = 0
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.ruff.lint]
extend-ignore = [
"E", # Syntax errors
"F", # Pyflakes rules (excluding F401)
"UP", # pyupgrade rules
"D", # Docstring rules
]
extend-select = ["F401"]
unfixable = []
[tool.pylint.master]
fail-under = 4.0
output-format = "colorized,json:.lint.json,text:.lint.txt"
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.mypy]
ignore_errors = true
[[tool.mypy.overrides]]
module = [
"test.*",
]
ignore_errors = true