-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
116 lines (90 loc) · 2.25 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[tool.poetry]
name = "exasol-saas-api"
version = "0.10.0"
description = "API enabling Python applications connecting to Exasol database SaaS instances and using their SaaS services"
packages = [ {include = "exasol"}, ]
authors = [ "Christoph Kuhnke <christoph.kuhnke@exasol.com>" ]
maintainers = [ "Christoph Kuhnke <christoph.kuhnke@exasol.com>" ]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
]
readme = "README.md"
license = "MIT"
[tool.poetry.urls]
"Homepage" = "https://github.com/exasol/saas-api-python"
"Documentation" = "https://github.com/exasol/saas-api-python"
"Source" = "https://github.com/exasol/saas-api-python"
"Issues" = "https://github.com/exasol/saas-api-python/issues"
[tool.poetry.dependencies]
python = "^3.10.0"
requests = "^2.31.0"
types-requests = "^2.31.0.6"
ifaddr = "^0.2.0"
tenacity = "^8.2.3"
# generated by openapi-python-client
httpx = ">=0.20.0"
python-dateutil = "^2.8.0"
attrs = ">=22.2.0"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.1"
pytest-mock = "^3.7.0"
exasol-toolbox = ">=0.12.0"
openapi-python-client = ">=0.21.5"
pyexasol = ">=0.25.0"
toml = "^0.10.2"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"test"
]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[tool.coverage.run]
relative_files = true
source = [
"exasol",
]
omit = [
'*/exasol/saas/client/openapi/*',
]
[tool.coverage.report]
fail_under = 15
[tool.black]
line-length = 88
verbose = false
include = "\\.pyi?$"
[tool.isort]
profile = "black"
force_grid_wrap = 2
[tool.pylint.master]
fail-under = 7.5
output-format = "colorized,json:.lint.json,text:.lint.txt"
ignore = [
"noxfile.py",
"version.py",
"noxconfig.py",
]
ignore-paths = [
".*/exasol/saas/client/openapi/.*",
".*/test/.*",
]
[[tool.mypy.overrides]]
module = [
"exasol.toolbox.nox.tasks",
"exasol.saas.client.openapi.*",
"test.conftest.*",
"test.*",
]
ignore_errors = true
ignore_missing_imports = true
[tool.pylint.format]
max-line-length = 88
max-module-lines = 800
[tool.poetry.scripts]
tbx = 'exasol.toolbox.tools.tbx:CLI'