-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
43 lines (35 loc) · 1.08 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "sre-agent"
version = "0.1.0"
description = "Agente de SRE/AIOps para monitoramento de saúde contínuo de stacks Railway + Vercel + Supabase."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "MariaHilmar" }]
keywords = ["sre", "aiops", "monitoring", "healthcheck", "railway", "vercel", "supabase", "devops"]
dependencies = [
"httpx>=0.28.1",
"pyyaml>=6.0.3",
"rich>=15.0.0",
"click>=8.4.2",
]
[project.optional-dependencies]
rca = ["anthropic>=0.40"] # necessário só para o comando `diagnose` (RCA por LLM)
dev = ["pytest>=9.1.1", "pytest-asyncio>=1.4.0", "respx>=0.23.1", "ruff>=0.16.0"]
[project.urls]
Homepage = "https://github.com/MariaHilmar/sre-agent"
[project.scripts]
sre-agent = "sre_agent.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/sre_agent"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]