-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (38 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
41 lines (38 loc) · 844 Bytes
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
[project]
name = "koreo-controller"
version = "0.1.18"
description = "Koreo Controller runs Koreo Core as a Kubernetes Controller."
authors = [
{name = "Eric Larssen", email = "eric.larssen@realkinetic.com"},
{name = "Robert Kluin", email = "robert.kluin@realkinetic.com"},
]
dependencies = [
"koreo-core==0.1.15",
"cel-python==0.3.0",
"kr8s==0.20.7",
"uvloop==0.21.0",
]
requires-python = "==3.13.*"
readme = "README.md"
license = {text = "Apache-2.0"}
[tool.pdm]
distribution = false
[dependency-groups]
test = [
"pytest==8.4.0",
"pytest-cov==6.1.1",
]
tooling = [
"ruff==0.11.13",
"pyright==1.1.401",
]
all = ["koreo-core[test,tooling]"]
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"-v",
"--import-mode=importlib",
"--cov=src",
"--cov-branch",
"--cov-report=term-missing",
]