-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 752 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]
# XXX: If your project needs other packages to build properly, add them to this list.
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "mops-pred"
version = "1.0.0"
authors = [
{name = "Maximilian Xiling Li", email="maximilian.xiling.li@gmail.com"}
]
readme = "README.md"
dependencies = [
"datasets>=4.8.4",
"draccus>=0.11.5",
"h5py>=3.15.1",
"lightning>=2.6.0",
"matplotlib>=3.10.7",
"pycocotools>=2.0.11",
"torch>=2.9.1",
"torchaudio>=2.9.1",
"torchvision>=0.24.1",
"transformers>=4.57.3",
"wandb>=0.23.1",
"webdataset>=0.2.100",
]
[tool.setuptools.packages.find]
include = ["mops_pred*"]
[dependency-groups]
dev = [
"ruff>=0.14.8",
]