-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.11 KB
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
[tool.poetry]
name = "mkcli"
version = "0.9.0"
description = ""
authors = ["Ewa Adamska <eadamska@cloudferro.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
python-keycloak = "^5.5.1"
typer = "0.20.0"
loguru = "^0.7.3"
pydantic = "^2.11.5"
pydantic-settings = "^2.9.1"
petname = "^2.6"
ruff = "^0.11.11"
pytest = "^8.3.5"
platformdirs = "^4.3.8"
pytest-mock = "^3.14.1"
pylint = "^3.3.8"
pytest-dependency = "^0.6.0"
pytest-order = "^1.3.0"
structlog = "^25.4.0"
getchlib = "^1.1.2"
getchar = "^2.0.0"
readchar = "^4.2.1"
pyperclip = "^1.11.0"
pytest-retry = "^1.7.0"
certifi = "^2026.1.4"
[tool.poetry.group.dev.dependencies]
mkdocs = "^1.6.1"
mkdocs-material = "^9.6.14"
markdown-include = "^0.8.1"
mkdocs-typer = "^0.0.3"
pytest-cov = "^7.0.0"
coverage = "^7.10.6"
vhs = "^1.0.0.post1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mkcli = "mkcli.main:run"
[tool.pytest.ini_options]
markers = [
"unit: marks tests as unit tests (fast, isolated)",
"integration: marks tests as integration tests (slower, requires external services)",
]