forked from thu-ml/TurboDiffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.19 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
[project]
name = "turbodiffusion"
description = "TurboDiffusion: video generation acceleration framework that could accelerate end-to-end video generation by 100-205x with negligible video quality loss."
version = "1.0.0"
authors = [
{ name = "Jintao Zhang" },
{ name = "Kaiwen Zheng" },
{ name = "Kai Jiang" },
{ name = "Haoxu Wang" },
]
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"torch>=2.7.0",
"torchvision",
"triton>=3.3.0",
"flash-attn",
"einops",
"numpy",
"pillow",
"loguru",
"imageio[ffmpeg]",
"pandas",
"PyYAML",
"omegaconf",
"attrs",
"fvcore",
"ftfy",
"regex",
"transformers",
"nvidia-ml-py",
"prompt-toolkit>=3.0",
"rich>=13.0",
]
[build-system]
requires = [
"setuptools>=62",
"wheel>=0.38",
"packaging>=21",
"torch>=2.7.0",
"ninja",
]
build-backend = "setuptools.build_meta"
[project.scripts]
turbodiffusion-serve = "turbodiffusion.serve.tui:main"
[project.urls]
Homepage = "https://github.com/thu-ml/TurboDiffusion"
Repository = "https://github.com/thu-ml/TurboDiffusion"