-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
81 lines (59 loc) · 1.45 KB
/
pyproject.toml
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
[tool.poetry]
name = "exasol-error-reporting"
packages = [
{include = "exasol"},
{include = "exasol_error_reporting_python"}
]
version = "0.5.0"
description = "Exasol Python Error Reporting"
license = "MIT"
authors = [
"Umit Buyuksahin <[email protected]>",
"Torsten Kilias <[email protected]>",
"Nicola Coretti <[email protected]>"
]
readme = 'README.md'
repository = "https://github.com/exasol/error-reporting-python"
homepage = "https://github.com/exasol/error-reporting-python"
keywords = ['exasol', 'python', 'error-reporting']
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.1.2,<9"
prysk = {extras = ["pytest-plugin"], version = ">=0.15.1"}
exasol-toolbox = ">=0.13.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
ec = 'exasol.error._cli:main'
[tool.coverage.run]
relative_files = true
source = [
"exasol",
"exasol_error_reporting_python",
]
[tool.coverage.report]
fail_under = 65
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
fail-under = 7.0
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[[tool.mypy.overrides]]
module = [
"exasol_error_reporting_python.*",
"exasol.*",
"noxfile",
"noxconfig",
"test.unit.*",
"test.integration.*",
]
ignore_errors = true