-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
92 lines (71 loc) · 2 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
82
83
84
85
86
87
88
89
90
91
92
[tool.poetry]
name = "exasol-advanced-analytics-framework"
version = "0.2.0"
description = "Framework for building complex data analysis algorithms with Exasol"
packages = [
{include = "exasol"},
]
authors = [
"Umit Buyuksahin <[email protected]>",
"Torsten Kilias <[email protected]>"
]
readme = 'README.md'
repository = "https://github.com/exasol/advanced-analytics-framework"
homepage = "https://github.com/exasol/advanced-analytics-framework"
keywords = ['exasol']
[tool.poetry.dependencies]
python = ">=3.10,<4"
jinja2 = "^3.0.3"
importlib-resources = "^6.4.0"
exasol-bucketfs = ">=0.6.0,<1.0.0"
click = "^8.0.4"
pyexasol = ">=0.25.0,<1.0.0"
pandas = "^2.2.3"
pydantic = "^2.10.2"
pyzmq = "^26.0.3"
sortedcontainers = "^2.4.0"
structlog = "^24.2.0"
typeguard = "^4.0.0"
nox = "^2024.4.15"
[tool.poetry.group.dev.dependencies]
pytest = ">=7,<9"
pytest-assume = "^2.4.3"
exasol-udf-mock-python = ">=0.2.0,<1.0.0"
pytest-cov = "^5.0.0"
exasol-integration-test-docker-environment = "^3.1.0"
polyfactory = "^2.8.0"
pytest-repeat = ">=0.9.1"
elasticsearch = "^8.6.1"
exasol-toolbox = ">=0.14.0"
exasol-python-extension-common = ">=0.6.0,<1.0.0"
exasol-script-languages-container-tool = "^1.0.0"
pytest-exasol-slc = ">=0.1.0,<1.0.0"
pytest-exasol-backend = ">=0.3.0,<1.0.0"
pytest-exasol-extension = ">=0.1.0,<1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = [
"pandas.*", "exasol.bucketfs.*", "pyexasol.*", "exasol.pytnsion_common.*",
"networkx.*", "exasol_udf_mock_python.*", "joblib.*",
"exasol.python_extension_common.*", "exasol_bucketfs_utils_python.*", ]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = [
"tests.*",
"noxfile",
]
ignore_errors = true
[tool.pylint.master]
fail-under = 6.0
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800