-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (46 loc) · 1.03 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
54
[project]
name = "koreo-core"
version = "0.1.17"
description = "Type-safe and testable KRM Templates and Workflows."
authors = [
{name = "Robert Kluin", email = "robert.kluin@realkinetic.com"},
{name = "Eric Larssen", email = "eric.larssen@realkinetic.com"},
{name = "Tyler Treat", email = "tyler-treat@realkinetic.com"},
]
dependencies = [
"cel-python==0.3.0",
"PyYAML==6.0.2",
"kr8s==0.20.7",
"fastjsonschema==2.21.1",
]
requires-python = ">=3.13"
readme = "README.md"
license = {text = "Apache-2.0"}
[project.urls]
Homepage = "https://koreo.dev"
[dependency-groups]
test = [
"pytest==8.4.0",
"pytest-cov==6.1.1",
]
tooling = [
"ruff==0.11.12",
"pyright==1.1.401",
]
all = ["koreo-core[test,tooling]"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.build]
package-dir = "src"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"-v",
"--import-mode=importlib",
"--cov=src",
"--cov-branch",
"--cov-report=term-missing",
]