forked from exasol/bucketfs-utils-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
87 lines (68 loc) · 1.57 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
[build-system]
requires = [
"poetry>=1.0.0",
]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "exasol-bucketfs"
packages = [
{include = "exasol"},
{include = "exasol_bucketfs_utils_python"}
]
version = "0.14.0"
description = "BucketFS utilities for the Python programming language"
license = "MIT"
authors = [
"Torsten Kilias <torsten.kilias@exasol.com>",
"Nicola Coretti <nicola.coretti@exasol.com>",
"Anastasiia Sergienko <anastasiia.sergienko@exasol.com>"
]
readme = 'README.rst'
repository = "https://github.com/exasol/bucketfs-python"
homepage = "https://github.com/exasol/bucketfs-python"
keywords = ['exasol', 'bucketfs']
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
requests = ">=2.24.0"
joblib=">=1.0.1"
typeguard = ">=4.3.0"
exasol-saas-api=">=0.3.0"
# Temp.fix
httpx=">=0.27.0"
attrs=">=23.2.0"
[tool.poetry.dev-dependencies]
pyexasol = "^0.25.2"
dill = "^0.3.4"
exasol-udf-mock-python = ">=0.2.0"
toml = ">=0.10.2"
sphinx-copybutton = "^0.5.0"
exasol-toolbox = ">=0.16.0,<1"
pytest-localserver = "^0.8.1"
pytest-exasol-backend = ">=0.3.2,<1"
[tool.coverage.run]
source = [
"exasol",
]
[tool.coverage.report]
fail_under = 77
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
fail-under = 7.3
output-format = "colorized,json:.lint.json,text:.lint.txt"
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.mypy]
ignore_errors = true
[[tool.mypy.overrides]]
module = [
"tests.*",
"test.*",
]
ignore_errors = true