-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 770 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 770 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
[project]
name = "aethertavern"
version = "0.1.0"
description = "Standalone AetherTavern chat server (single-user, localhost-only)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115",
"uvicorn>=0.32",
"httpx[socks]>=0.28",
"python-multipart>=0.0.20",
"pydantic>=2.10",
"jinja2>=3.1",
"curl-cffi>=0.15.0",
"pillow>=12.2.0",
"regex>=2026.4.4",
"msgspec>=0.21.1",
"pyyaml>=6.0.3",
]
[dependency-groups]
dev = [
"playwright>=1.59.0",
"pytest>=8.3",
"pytest-asyncio>=0.24",
"uvicorn[standard]>=0.32",
]
tokenizer-parity = [
"transformers>=4.46",
"tokenizers>=0.20",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.uv]
exclude-newer = "1 weeks"
default-groups = []