-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (48 loc) · 1.26 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
[tool.poetry]
name = "exasol-script-languages-container-ci"
version = "1.6.0"
description = "Implements CI builds for script-language-container."
license = "MIT"
authors = [
"Thomas Uebensee <[email protected]>"
]
packages = [
{include = "README.md"},
{include = "LICENSE"},
{include = "exasol_script_languages_container_ci"},
]
[tool.poetry.dependencies]
python = ">=3.10.0,<4.0"
click = "^8.1.7"
GitPython = ">=3.1.0"
exasol-script-languages-container-tool = "^1.0.0"
exasol-integration-test-docker-environment = "^3.1.0"
PyGithub = "^2.3.0"
setuptools = "^73.0.0"
datamodel-code-generator = ">=0.25.5 <0.30.0"
[tool.poetry.group.dev.dependencies]
exasol-toolbox = ">=0.15.0,<1.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
toml = ">=0.10.2"
pytest = "^7.1.1"
pytest-mock = "^3.7.0"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ignore=test/integration/resources"
testpaths = [
"test"
]
[[tool.mypy.overrides]]
module = ["exasol_integration_test_docker_environment.*", "docker.*", "toml"]
ignore_missing_imports = true
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = """
W,R,C,
"""