-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
53 lines (48 loc) · 1.46 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
[project]
name = "based-eval"
version = "0.1.0"
description = "BASED Eval - Benchmark for Association, Sorting, and Entity Deduction - A multi-game AI evaluation framework"
authors = [
{name = "Jacob Matson", email = "jacob@example.com"},
]
dependencies = [
"typer>=0.9.0",
"pyyaml>=6.0",
"types-pyyaml>=6.0",
"openai>=1.0.0",
"rich>=13.0.0",
"pydantic>=2.0.0",
"tenacity>=8.0.0",
"requests>=2.25.0",
# Optional but recommended for full functionality
"tiktoken>=0.5.0", # For token counting
"duckdb>=1.0.0", # For MotherDuck integration
"pandas>=2.0.0", # For DuckDB DataFrame operations
"great-tables>=0.20.0",
"arena-rank>=0.1.0", # For Bradley-Terry leaderboard rankings
"matplotlib>=3.7.0", # For leaderboard chart generation
"dspy>=2.5.0", # For prompt optimization
"sentence-transformers>=2.2.0", # For semantic embeddings in puzzle generation
"numpy>=1.24.0", # For embedding calculations
]
requires-python = ">=3.12,<3.14"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
based = "cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["codenames", "shared", "cli.py"]
[dependency-groups]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
]
[tool.hatch.build.targets.wheel.sources]
# Include shared inputs in the package
"shared/inputs" = "shared/inputs"