-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
97 lines (79 loc) · 2.42 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
[project]
name = "exasol-integration-test-docker-environment"
version = "4.1.0"
description = "Integration Test Docker Environment for Exasol"
authors = [
{name="Torsten Kilias", email="[email protected]"},
]
readme = 'README.rst'
license = "MIT"
keywords = ['exasol', 'docker', 'testing']
[project.urls]
homepage = "https://github.com/exasol/integration-test-docker-environment"
repository = "https://github.com/exasol/integration-test-docker-environment"
[tool.poetry]
packages = [
{ include = "exasol_integration_test_docker_environment" },
]
include = ["docker_db_config", "ext"]
exclude = ["exasol_integration_test_docker_environment/test"]
[tool.poetry.dependencies]
python = ">=3.9.2,<4"
click = ">=7.0"
# The `sys_platform` marker makes sure the docker dependency is only installed on
# non windows platforms.
docker = { version = ">=4.0.0,!=7.0.0", markers = "sys_platform != 'win32'" }
gitpython = ">=2.1.0"
humanfriendly = ">=4.18"
jinja2 = ">=2.10.1"
jsonpickle = ">=1.1"
luigi = ">=2.8.4"
netaddr = ">=0.7.19"
networkx = ">=2.3"
pydot = ">=1.4.0"
requests = ">=2.21.0"
simplejson = ">=3.16.0"
importlib_resources = ">=5.4.0" #Needed to copy resource files, can be removed after upgrading to Python 3.9 (see https://docs.python.org/3.11/library/importlib.resources.html#importlib.resources.files)
"stopwatch.py" = ">=1.0.0"
fabric = "^3.0.1"
portalocker = "^2.7.0"
exasol-error-reporting = "^1.0.0"
docutils = ">=0.21.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
toml = ">=0.10.2"
nox = "^2022.1.7"
mypy = "^1.1.1"
pyexasol = "^0.25.2"
exasol-toolbox = "^1.0.0"
joblib = "^1.4.2"
[build-system]
requires = [
"poetry>=2.0.0",
"poetry-core"
]
[tool.poetry.plugins."console_scripts"]
itde = 'exasol_integration_test_docker_environment.main:main'
[tool.mypy]
plugins = ["luigi.mypy"]
[[tool.mypy.overrides]]
module = [ "luigi.*", "docker.*", "humanfriendly", "configobj", "toml", "netaddr", "joblib.testing", "networkx",
"fabric", "requests", "pyexasol", "paramiko.ssh_exception", "six", "jsonpickle",
"paramiko", "networkx.classes"]
ignore_missing_imports = true
[tool.pylint.master]
fail-under = 6.50
[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
[tool.pytest.ini_options]
markers = [
"gpu: tests which require a GPU (deselect with '-m \"not gpu\"')",
]