-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.05 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.05 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "debateflow"
version = "0.1.0"
description = "Synthetic debate generation pipeline for multi-turn debate judgment benchmarks"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.0.0",
"pydantic-ai>=1.0.0",
"typer>=0.12.0",
"rich>=13.0.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"datasets>=3.0.0",
"huggingface_hub>=0.25.0",
"elevenlabs>=1.0.0",
"openai>=1.0.0",
"starlette>=0.40.0",
"uvicorn>=0.30.0",
"python-telegram-bot>=22.6",
"pydub>=0.25.1",
"audioop-lts>=0.2.1; python_version>='3.13'",
]
[project.scripts]
debateflow = "debateflow.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["src/debateflow"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
src = ["src"]
[tool.mypy]
mypy_path = "src"
[dependency-groups]
dev = [
"mypy>=1.19.1",
"pytest>=9.0.2",
"ruff>=0.15.1",
"types-pyyaml>=6.0.12.20250915",
]
[tool.uv]
required-version = ">=0.11.14"
exclude-newer = "7 days"