-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "k8s-auto-fix"
version = "0.1.0"
description = "Closed-loop pipeline for detecting, proposing, verifying, and scheduling Kubernetes manifest fixes."
readme = "README.md"
requires-python = ">=3.10"
authors = [{ name = "bmendonca3" }]
dependencies = [
"pyyaml",
"jsonpatch",
"kubernetes",
"rich",
"typer",
"requests",
"httpx",
"fastapi",
"uvicorn",
"numpy",
"pandas",
"scikit-learn",
"scipy",
"matplotlib",
"pytest",
]
[project.scripts]
k8s-auto-fix-detect = "src.detector.cli:app"
k8s-auto-fix-propose = "src.proposer.cli:app"
k8s-auto-fix-verify = "src.verifier.cli:app"
k8s-auto-fix-schedule = "src.scheduler.cli:app"
k8s-auto-fix-queue = "src.scheduler.queue_cli:app"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
namespaces = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]