-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (50 loc) · 1.17 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "easywam"
version = "0.1.0"
description = "EasyWAM: An Efficient and Easy-to-Use Codebase for World Action Model"
requires-python = ">=3.10"
dependencies = [
"accelerate==1.5.2",
"av==16.0.1",
"boto3==1.35.99",
"datasets==3.6.0",
"deepspeed==0.16.9",
"einops==0.8.1",
"gitpython==3.1.45",
"huggingface-hub==0.36.2",
"hydra-core==1.3.2",
"h5py==3.16.0",
"imageio==2.37.0",
"imageio-ffmpeg==0.6.0",
"jsonlines==4.0.0",
"matplotlib==3.5.3",
"modelscope==1.34.0",
"numpy==1.26.4",
"omegaconf==2.3.0",
"opencv-python==4.6.0.66",
"packaging==26.3",
"pandas==2.2.3",
"peft==0.19.1",
"pillow==12.0.0",
"pyarrow==23.0.0",
"regex==2025.11.3",
"rich==14.2.0",
"safetensors==0.5.3",
"termcolor==2.5.0",
"torch==2.7.1+cu128",
"torchvision==0.22.1+cu128",
"tqdm==4.66.5",
"transformers==4.57.0",
"typing-extensions==4.15.0",
"wandb==0.23.1",
]
[tool.setuptools]
py-modules = ["runtime", "trainer"]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.packages.find]
where = ["src"]
include = ["data*", "model*", "utils*"]