-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (34 loc) · 813 Bytes
/
pyproject.toml
File metadata and controls
36 lines (34 loc) · 813 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
[project]
name = "radar"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Ken", email = "ken.qgu@cs.washington.edu" }
]
requires-python = ">=3.11"
dependencies = [
"datasets>=3.6.0",
"diskcache>=5.6.3",
"gcsfs>=2025.3.0",
"gemma==2.0.8",
"google-generativeai>=0.8.5",
"ipykernel>=6.29.5",
"kauldron>=0.1.0",
"langchain>=0.3.25",
"langfun[all]>=0.1.2.dev202506070804",
"loguru>=0.7.3",
"orjson>=3.10.18",
"pandas>=2.3.0",
"pydantic>=2.11.5",
"python-dotenv>=1.1.0",
"pyyaml>=6.0.2",
"tiktoken>=0.9.0",
"typer>=0.16.0",
]
[project.scripts]
build = "radar.cli.build_task:main"
evaluate = "radar.cli.evaluate:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"