-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
82 lines (66 loc) · 2.17 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
[tool.poetry]
name = "exasol-integration-test-docker-environment"
packages = [
{ include = "exasol_integration_test_docker_environment" },
]
version = "3.4.0"
description = "Integration Test Docker Environment for Exasol"
license = "MIT"
authors = [
"Torsten Kilias <[email protected]>"
]
readme = 'README.rst'
repository = "https://github.com/exasol/integration-test-docker-environment"
homepage = "https://github.com/exasol/integration-test-docker-environment"
keywords = ['exasol', 'docker', 'testing']
include = ["docker_db_config", "ext"]
exclude = ["exasol_integration_test_docker_environment/test"]
[tool.poetry.dependencies]
python = ">=3.9,<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 = ">=0.4.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 = ">=0.20.0"
joblib = "^1.4.2"
[tool.poetry.scripts]
itde = 'exasol_integration_test_docker_environment.main:main'
[[tool.mypy.overrides]]
module = [ "luigi.*", "docker.*", "humanfriendly", "configobj", "toml", "netaddr", "joblib.testing", "networkx",
"fabric", "requests", "pyexasol", "paramiko.ssh_exception", "six", "jsonpickle", "exasol.toolbox.*",
"paramiko", "exasol"]
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