-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
114 lines (95 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Copyright 2024 Canonical Ltd.
# See LICENSE file for licensing details.
# Testing tools configuration
[tool.coverage.run]
branch = true
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "6.0"
log_cli_level = "INFO"
asyncio_mode = "auto"
markers = ["unstable"]
# Formatting tools configuration
[tool.black]
line-length = 99
target-version = ["py310"]
[tool.isort]
profile = "black"
[tool.poetry]
name = "kyuubi-k8s-operator"
version = "1.0"
description = "kyuubi-k8s-operator"
authors = []
[tool.poetry.dependencies]
cosl = "^0.0.12"
python = ">=3.8,<4.0"
ops = ">=2.4.1"
pydantic ="^1.10.7"
pyyaml = "^6.0.1"
boto3 = "^1.26.75"
jsonschema = "^4.19.1"
lightkube = "^0.15.2"
psycopg2 = "^2.9.9"
tenacity = ">=8.0.1"
# FIXME: Unpin once rustc 1.76 is available at build time
rpds-py = "<0.19"
spark8t = { git = "https://github.com/canonical/spark-k8s-toolkit-py.git", tag="v0.0.7", python=">3.8,<4.0"}
poetry-core = "^1.9.0"
[tool.poetry.group.charm-libs.dependencies]
ops = "^2.13.0"
poetry-core = "^1.9.0"
# grafana_agent/v0/cos_agent.py requires pydantic <2
pydantic = "^1.10.17, <2"
[tool.poetry.group.format]
optional = true
[tool.poetry.group.format.dependencies]
black = "^22.3.0"
ruff = ">=0.0.157"
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.lint.dependencies]
black = "^22.3.0"
ruff = ">=0.0.157"
codespell = ">=2.2.2"
[tool.poetry.group.unit]
optional = true
[tool.poetry.group.unit.dependencies]
pytest = ">=7.2"
pytest-asyncio = ">0.20.0"
coverage = {extras = ["toml"], version = ">7.0"}
ops-scenario = "^6.0.2"
[tool.poetry.group.integration]
optional = true
[tool.poetry.group.integration.dependencies]
pytest = ">=7.2"
juju = "^3.1.6"
coverage = {extras = ["toml"], version = ">7.0"}
pytest-operator = ">0.20"
boto3 = ">=1.28.0"
tenacity = "^8.2.2"
pytest-operator-cache = {git = "https://github.com/canonical/data-platform-workflows", tag = "v6.1.1", subdirectory = "python/pytest_plugins/pytest_operator_cache"}
[tool.ruff]
line-length = 99
select = ["E", "W", "F", "C", "N", "D", "I001"]
extend-ignore = [
"D203",
"D204",
"D213",
"D215",
"D400",
"D401",
"D404",
"D406",
"D407",
"D408",
"D409",
"D413",
]
ignore = ["E501", "D107"]
extend-exclude = ["__pycache__", "*.egg_info"]
per-file-ignores = {"tests/*" = ["D100","D101","D102","D103","D104", "E999"]}
target-version="py310"
src = ["src", "tests"]
[tool.ruff.mccabe]
max-complexity = 10