-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
79 lines (63 loc) · 2.02 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
[tool.poetry]
name = "exasol-script-languages-container-tool"
version = "1.1.0"
description = "Script Languages Container Tool"
license = "MIT"
authors = [
"Torsten Kilias <[email protected]>"
]
packages = [
{include = "README.md"},
{include = "LICENSE"},
{include = "exasol"},
]
readme = 'README.md' # Markdown files are supported
repository = "https://github.com/exasol/script-languages-container-tool"
homepage = "https://github.com/exasol/script-languages-container-tool"
keywords = ['exasol', 'udf', 'script-languages']
[tool.poetry.urls]
"Homepage" = "https://github.com/exasol/script-languages-container-tool"
"Documentation" = "https://github.com/exasol/script-languages-container-tool"
"Source" = "https://github.com/exasol/script-languages-container-tool"
"Issues" = "https://github.com/exasol/script-languages-container-tool/issues"
[tool.poetry.dependencies]
python = ">=3.10,<4"
importlib_metadata = ">=4.6.0"
importlib-resources = ">=6.4.0"
networkx = "^3.3.0"
exasol-integration-test-docker-environment = "^3.1.0"
exasol-bucketfs="^0.13.0"
pydantic="^2.10.2"
jsonschema="^4.23.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
toml = ">=0.10.2"
configobj = "^5.0.8" # moved to dev dependencie so security alert does not propagate further up
exasol-toolbox = ">=0.14.0"
[tool.poetry.scripts]
exaslct = 'exasol.slc.tool.main:main'
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"test"
]
[[tool.mypy.overrides]]
module = ["exasol_integration_test_docker_environment.*", "luigi.*", "docker.*",
"humanfriendly", "configobj", "exasol.bucketfs", "toml"]
ignore_missing_imports = true
[tool.pylint.'MESSAGES CONTROL']
max-line-length = 120
disable = """
W,R,C,
duplicate-code,
missing-class-docstring,
missing-module-docstring,
missing-function-docstring,
too-many-ancestors,
broad-exception-raised,
broad-exception-caught,
consider-using-f-string,
useless-parent-delegation
"""