-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 886 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 886 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
[project]
name = "codeward"
version = "0.1.0"
description = "AI agents support for GitLab CE"
requires-python = ">=3.14"
license = "BSD 3-Clause"
dependencies = [
"fastapi==0.135.2",
"uvicorn[standard]==0.42.0",
"httpx==0.28.1",
"pydantic-settings==2.13.1",
"pyyaml==6.0.3",
"sqlalchemy[asyncio]==2.0.48",
"alembic==1.18.4",
"aiosqlite==0.22.1",
"agno[litellm]==2.5.0",
"tiktoken==0.12.0",
"redis==7.4.0",
"litellm<=1.82.0",
"mcp==1.26.0",
]
[dependency-groups]
dev = [
"pytest==9.0.2",
"pytest-asyncio==1.3.0",
"pytest-httpx==0.36.0",
"fakeredis>=2.26",
"ruff==0.15.7",
"mypy==1.19.1",
]
[project.optional-dependencies]
postgres = ["asyncpg==0.31.0"]
mysql = ["aiomysql==0.3.2"]
[tool.ruff]
target-version = "py312"
line-length = 100
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]