-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1015 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1015 Bytes
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
[tool.poetry]
name = "debugger"
version = "0.1.0"
description = "AI agent for debugging infrastructure issues"
authors = ["kumarabd <abishekkumar92@gmail.com>"]
readme = "README.md"
packages = [{include = "debugger_agent"},{include = "fixer_agent"},{include = "leader_agent"},{include = "shared"}]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
atomic-agents = "^1.1.3"
openai = "^1.3.0"
fastapi = "^0.108.0"
uvicorn = "^0.24.0"
requests = "^2.31.0"
pydantic = "^2.4.0"
pydantic-settings = "^2.0.3"
python-dotenv = "^1.0.0"
httpx = "^0.27.0"
typing-extensions = "^4.8.0"
[tool.poetry.group.dev.dependencies]
black = "^23.10.0"
isort = "^5.12.0"
mypy = "^1.6.1"
pytest = "^7.4.3"
ruff = "^0.1.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py310', 'py311']
include = '\.pyi?$'
[tool.isort]
profile = "black"
[tool.mypy]
ignore_missing_imports = true
disallow_untyped_defs = true
disallow_incomplete_defs = true