-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
55 lines (48 loc) · 1.1 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
[project]
name = "skvaider"
version = "0.1.0dev0"
license = "MIT"
description = "Router for ML/AI model API access"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Flying Circus Internet Operations GmbH", email = "mail@flyingcircus.io" },
]
dependencies = [
"fastapi[standard]>=0.116.1",
"httpx>=0.28.1",
"greenlet>=3.2.4",
"psycopg>=3.2.9",
"pydantic-settings>=2.10.1",
"sqlalchemy>=2.0.43",
"svcs>=25.1.0",
"rfc8785>=0.1.4",
"structlog>=25.5.0",
"aiosqlite>=0.21.0",
"alembic>=1.16.5",
"argon2-cffi>=25.1.0",
"uvicorn-worker>=0.3.0",
"gunicorn>=23.0.0",
]
[project.scripts]
skvaider = "skvaider:main"
[build-system]
requires = ["uv_build>=0.8.2,<0.9.0"]
build-backend = "uv_build"
[tool.black]
line-length = 80
[tool.isort]
profile = "black"
line_length = 80
[tool.coverage.run]
concurrency = ["thread", "greenlet"]
[tool.uv.build-backend]
module-name = ["aramaki", "skvaider"]
[dependency-groups]
dev = [
"openai>=1.100.2",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"pytest-timeout>=2.4.0",
]