-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (57 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (57 loc) · 1.33 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
[project]
name = "gemini-sre-agent"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12.11"
dependencies = [
"pyyaml>=6.0.1",
"pydantic>=2.7.0",
"pydantic-settings>=2.0.0",
"click>=8.0.0",
"tenacity>=8.2.3",
"slowapi>=0.1.9",
"fastapi>=0.111.0",
"uvicorn>=0.30.0",
"httpx>=0.27.0",
"google-cloud-logging>=3.10.0",
"google-cloud-pubsub>=2.21.1",
"google-cloud-aiplatform>=1.53.0",
"aiofiles>=23.2.1",
"pytest>=8.2.0",
"pytest-asyncio>=0.23.7",
"PyGithub>=2.3.0",
"google-auth>=2.29.0",
"google-auth-oauthlib>=1.2.0",
"google-auth-httplib2>=0.2.0",
"google-generativeai>=0.3.0",
"circuitbreaker>=2.1.3",
"limits>=3.5.0",
"boto3>=1.34.0",
"kubernetes>=28.1.0",
"aiohttp>=3.9.0",
"psutil>=5.9.0",
"mirascope>=1.25.6",
"ollama>=0.5.3",
"anthropic>=0.66.0",
"openai>=1.106.0",
"hyx>=0.0.2",
"freezegun>=1.5.1",
"python-gitlab>=6.3.0",
"gitpython>=3.1.45",
"patch-ng>=1.18.1",
"chardet>=5.2.0",
"instructor>=1.11.3",
"litellm>=1.77.0",
"structlog>=25.4.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]
[dependency-groups]
dev = [
"pyright>=1.1.405",
]