-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.62 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (62 loc) · 1.62 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coding-agent"
version = "0.1.0"
description = "Multi-agent system for autonomous code generation, review, and testing"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.6,<3",
"pydantic-settings>=2.1,<3",
"pyyaml>=6.0,<7",
"httpx>=0.27,<1",
"openai>=1.12,<2",
"fastapi>=0.109,<1",
"uvicorn[standard]>=0.27,<1",
"websockets>=12,<13",
"typer>=0.9,<1",
"rich>=13,<14",
"structlog>=24.1,<25",
"opentelemetry-api>=1.23,<2",
"opentelemetry-sdk>=1.23,<2",
"opentelemetry-exporter-otlp-proto-grpc>=1.23,<2",
"prometheus-client>=0.19,<1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9",
"pytest-asyncio>=0.23,<1",
"pytest-cov>=4.1,<5",
"hypothesis>=6.98,<7",
"ruff>=0.2,<1",
"mypy>=1.8,<2",
"bandit>=1.7,<2",
"pytest-httpx>=0.30,<1",
"types-PyYAML>=6.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
select = ["E", "F", "I", "N", "W", "UP", "B", "SIM", "ARG"]
ignore = ["E501"]
format = {}
[tool.mypy]
python_version = "3.11"
strict = false
ignore_missing_imports = true
warn_return_any = true
warn_unused_ignores = true
no_implicit_optional = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = true
disallow_untyped_decorators = false
[tool.mypy-overrides]
module = ["pydantic*", "httpx*", "fastapi*", "uvicorn*", "openai*", "yaml", "PyYAML"]
ignore_missing_imports = true
[project.scripts]
coding-agent = "coding_agent.cli.main:app"
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]