-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 838 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (30 loc) · 838 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
[project]
name = "clayde"
version = "0.1.0"
description = "Clayde — autonomous GitHub issue agent"
requires-python = ">=3.12"
dependencies = [
"anthropic>=0.40",
"fastapi>=0.115",
"jinja2>=3.1.6",
"opentelemetry-api>=1.20",
"opentelemetry-sdk>=1.20",
"opentelemetry-exporter-otlp-proto-grpc>=1.20",
"pydantic-settings>=2.0",
"PyGitHub>=2.5.0",
"pyyaml>=6.0",
"requests>=2.31",
"uvicorn[standard]>=0.30",
]
[project.optional-dependencies]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "httpx>=0.27", "respx>=0.21"]
[project.scripts]
clayde = "clayde.orchestrator:run_loop"
clayde-once = "clayde.orchestrator:main"
clayde-ctl = "clayde.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"