-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 936 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 936 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
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "levante-bench"
version = "0.1.0"
description = "LEVANTE VLM benchmark: compare VLMs to children's behavioral data"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy>=1.26,<3",
"pandas>=2.2",
"torch>=2.2",
"Pillow>=10",
"requests>=2.31",
"omegaconf>=2.3",
"pyarrow>=23.0.1",
"matplotlib>=3.10.8",
"seaborn>=0.13.2",
"json-repair>=0.30",
]
# Pinned versions for reproducible installs: see requirements.txt
[project.optional-dependencies]
dev = ["pytest", "hypothesis", "ruff", "black", "isort"]
transformers = ["transformers"]
vlm = ["transformers>=5.3", "torchvision>=0.26", "num2words>=0.5"]
assets = ["clip @ git+https://github.com/openai/CLIP.git"]
[project.scripts]
levante-bench = "levante_bench.cli:main"
[tool.setuptools.packages.find]
where = ["src"]