File size: 583 Bytes
5fed0fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "frontier-cs"
version = "0.1.0"
description = "Evaluation framework for Frontier-CS problems"
requires-python = ">=3.11"
dependencies = [
    "anthropic>=0.74.0",
    "colorlog>=6.10.1",
    "google-genai>=1.55.0",
    "google-generativeai>=0.8.5",
    "numpy==2.3.4",
    "openai>=2.8.1",
    "python-dotenv>=1.2.1",
    "pyyaml>=6.0",
    "requests>=2.32.5",
    "skypilot>=0.10.5",
    "tqdm>=4.67.1",
]

[project.scripts]
frontier-eval = "frontier_cs.cli:main"

[tool.uv]
package = true

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"