-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (55 loc) · 1.34 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
[tool.poetry]
name = "exasol-python-extension-common"
version = "0.8.0"
description = "A collection of common utilities for Exasol extensions."
packages = [ {include = "exasol"}, ]
authors = ["Mikhail Beck <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10.0"
pyexasol = ">=0.25.0,<1.0.0"
exasol-bucketfs = ">=0.10.0"
click = "^8.1.7"
exasol-saas-api = ">=0.7.0,<1.0.0"
requests = ">=2.32.0"
tenacity = "^8.3.0"
exasol-script-languages-container-tool = "^1.0.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
exasol-toolbox = ">=0.12.0"
pytest-exasol-backend = ">=0.3.0,<1.0.0"
[build-system]
requires = ["poetry-core>=1.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 = 100
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
errors-only = true
output-format = "colorized,json:.lint.json,text:.lint.txt"
[tool.pylint.format]
max-line-length = 100
max-module-lines = 800
[[tool.mypy.overrides]]
module = [
"exasol.toolbox.nox.tasks",
"test.*",
]
ignore_errors = true
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
"saas: integration test that creates a db in SaaS.",
]