-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
53 lines (45 loc) · 965 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
45
46
47
48
49
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "llm-chess"
version = "0.0.0"
description = "LLM Chess benchmark: agentic chess games to evaluate reasoning and instruction following."
readme = "README.md"
requires-python = ">=3.10,<=3.14"
dependencies = [
"ag2[anthropic,cerebras,gemini,groq,mistral,openai]==0.11.2",
"cairosvg==2.7.1",
"chess==1.11.2",
"fastapi==0.115.11",
"matplotlib==3.10.0",
"moviepy==1.0.3",
"orjson",
"pandas",
"prettytable",
"requests",
"scipy",
"tabulate",
"uvicorn==0.34.0",
"seaborn",
]
[dependency-groups]
dev = [
"ipykernel",
"pytest",
"pytest-xdist",
]
[project.scripts]
llm-chess = "llm_chess:run"
get-refined-csv = "data.get_refined_csv:main"
[tool.setuptools]
py-modules = [
"custom_agents",
"do_call",
"get_run_metadata",
"llm_chess",
"run_multiple_games",
"termination_reasons",
"utils",
]
packages = ["data"]