-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (61 loc) · 1.54 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (61 loc) · 1.54 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "bashops-agent"
version = "0.1.0"
description = "Local LLM-powered assistant for sysadmins and SREs. Runs 100% on your GPU."
readme = "README.md"
requires-python = ">=3.12"
license = { text = "MIT" }
authors = [{ name = "Luis Salazar", email = "lsalazarm-sec@github.com" }]
keywords = ["llm", "sysadmin", "kubernetes", "sre", "ollama", "ai-agent"]
dependencies = [
"pydantic-ai>=0.0.14",
"pydantic>=2.9",
"httpx>=0.27",
"typer>=0.12",
"rich>=13.9",
"textual>=0.83",
"kubernetes>=31.0",
"prometheus-api-client>=0.5.5",
"structlog>=24.4",
"tenacity>=9.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"ruff>=0.7",
"mypy>=1.13",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"pytest-cov>=5.0",
"pytest-mock>=3.14",
"types-pyyaml",
]
[project.scripts]
bashops = "bashops_agent.cli:app"
[project.urls]
Homepage = "https://github.com/lsalazarm-sec/bashops-agent"
Issues = "https://github.com/lsalazarm-sec/bashops-agent/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/bashops_agent"]
[tool.ruff]
line-length = 100
target-version = "py312"
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP", "SIM", "RUF"]
ignore = ["E501", "RUF012"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.coverage.run]
branch = true
source = ["src/bashops_agent"]
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.13",
]