-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 868 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 868 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
[tool.poetry]
name = "raider_backend"
version = "0.0.4"
description = "Backend for Raider VS Code Extension"
authors = ["Cheong Sik Feng <sikfeng@gmail.com>"]
readme = "README.md"
repository = "https://github.com/sikfeng/raider-backend"
homepage = "https://github.com/sikfeng/raider-backend"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
aider-chat = "0.59.0"
fastapi = "^0.115.0"
uvicorn = ">=0.30.6,<0.31.0"
strictjson = "^5.1.3"
websockets = "^13.1"
boto3 = "^1.35.34"
litellm = "1.47.0"
web-raider = "^0.0.2"
taskgen-ai = "^3.3.4"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
init_agent_manager = "raider_backend.agent_manager:main"
init_ext_repo_agent = "raider_backend.repo_agents.external_repo_agent:main"
launch_endpoint = "raider_backend.launch:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"