-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 1.97 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "twinrouterbench"
version = "0.1.0"
description = "TwinRouterBench: static supervision and live evaluation for per-step LLM routing."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [{ name = "TwinRouterBench contributors" }]
keywords = ["llm", "router", "benchmark", "swe-bench", "routing"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"requests>=2.28.0",
"tiktoken>=0.7.0",
"tokenizers>=0.19.0",
]
[project.optional-dependencies]
dynamic = [
"mini-swe-agent>=2.2,<3",
"swebench>=2.1.0",
"docker>=7.0.0",
"litellm>=1.50.0",
]
[project.urls]
Homepage = "https://commonstackai.github.io/TwinRouterBench/"
Repository = "https://github.com/CommonstackAI/TwinRouterBench"
Paper = "https://arxiv.org/abs/2605.18859"
Dataset = "https://huggingface.co/datasets/Amorph/TwinRouterBench"
Leaderboard = "https://commonstackai.github.io/TwinRouterBench/"
[project.scripts]
twinrouterbench = "twinrouterbench.cli:main"
CommonRouterBench = "main.cli:main"
miniswerouterbench = "miniswerouter.cli:main"
swerouterbench = "swerouter.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["main*", "miniswerouter*", "swerouter*", "twinrouterbench*"]
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.package-data]
main = [
"../data/static/manifest.json",
"../data/static/question_bank.jsonl",
"tokenizer_data/*.json",
]
swerouter = ["../data/dynamic/*.json"]
twinrouterbench = [
"data_generation/*.json",
"data_generation/fixtures/*.json",
"data_generation/prompts/*.txt",
]
[tool.pytest.ini_options]
pythonpath = ["."]