-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (68 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
75 lines (68 loc) · 1.85 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
73
74
75
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vace"
version = "1.1.0"
description = "VACE: All-in-One Video Creation and Editing"
authors = [
{ name = "VACE Team", email = "wan.ai@alibabacloud.com" }
]
requires-python = ">=3.10,<4.0"
readme = "README.md"
dependencies = [
"torch>=2.5.1",
"torchvision>=0.20.1",
"opencv-python>=4.9.0.80",
"diffusers>=0.31.0",
"transformers>=4.49.0",
"tokenizers>=0.20.3",
"accelerate>=1.1.1",
"gradio>=5.0.0",
"numpy>=1.23.5,<2",
"tqdm",
"imageio",
"easydict",
"ftfy",
"dashscope",
"imageio-ffmpeg",
"flash_attn",
"decord",
"einops",
"scikit-image",
"scikit-learn",
"pycocotools",
"timm",
"onnxruntime-gpu",
"BeautifulSoup4"
]
[project.optional-dependencies]
ltx = [
"ltx-video@git+https://github.com/Lightricks/LTX-Video@ltx-video-0.9.1"
]
wan = [
"wan@git+https://github.com/Wan-Video/Wan2.1"
]
annotator = [
"insightface",
"sam-2@git+https://github.com/facebookresearch/sam2.git",
"segment-anything@git+https://github.com/facebookresearch/segment-anything.git",
"groundingdino@git+https://github.com/IDEA-Research/GroundingDINO.git",
"ram@git+https://github.com/xinyu1205/recognize-anything.git",
"raft@git+https://github.com/martin-chobanyan-sdc/RAFT.git"
]
[project.urls]
homepage = "https://ali-vilab.github.io/VACE-Page/"
documentation = "https://ali-vilab.github.io/VACE-Page/"
repository = "https://github.com/ali-vilab/VACE"
hfmodel = "https://huggingface.co/collections/ali-vilab/vace-67eca186ff3e3564726aff38"
msmodel = "https://modelscope.cn/collections/VACE-8fa5fcfd386e43"
paper = "https://arxiv.org/abs/2503.07598"
[tool.setuptools]
packages = { find = {} }
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[tool.mypy]
strict = true