-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (67 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
72 lines (67 loc) · 1.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "biobench"
version = "0.1.0"
description = "Benchmark for biology-related computer vision tasks."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"torch>=2.4.0",
"jaxtyping>=0.2.33",
"beartype>=0.18.5",
"tyro>=0.8.10",
"torchmetrics>=1.4.1",
"open-clip-torch>=3.2.0",
"datasets>=3.4.1",
"scikit-learn>=1.5.1",
"requests>=2.32.3",
"tqdm>=4.66.5",
"polars>=1.6.0",
"marimo>=0.11.25",
"matplotlib>=3.9.2",
"wilds>=2.0.0",
"cloudpickle>=3.0.0",
"timm>=1.0.9",
"kaggle>=1.6.17",
"torchvision>=0.19.1",
"submitit>=1.5.2",
"pycocotools>=2.0.8",
"gdown>=5.2.0",
"safetensors>=0.5.3",
"einops>=0.8.1",
"scipy>=1.15.2",
"mlcroissant>=1.0.17",
"statsmodels>=0.14.4",
"whenever>=0.8.3",
"pillow>=11.2.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.urls]
Homepage = "https://imageomics.github.io/biobench/"
Issues = "https://github.com/Imageomics/biobench/issues"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["F722", "E402", "E501"]
[tool.uv]
package = true
default-groups = "all"
[dependency-groups]
dev = [
"mkdocs-material>=9.6.20",
"mkdocstrings[python]>=0.30.1",
"mkdocs-gen-files>=0.5.0",
"mkdocs-literate-nav>=0.6.2",
"click==8.2.1",
"pytest>=8.3.5",
"pytest-xdist>=3.6.1",
"coverage-badge>=1.1.2",
"pytest-cov>=6.1.1",
"pytest-json-report>=1.5.0",
"hypothesis>=6.130.4",
"pyinstrument>=5.0.1",
"transformers>=4.51.3",
"pytest-timeout>=2.3.1",
"ffmpeg-python>=0.2.0",
"patdb>=0.1.0",
]