forked from chenfengxu714/StreamDiffusionV2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.96 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (67 loc) · 1.96 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "streamdiffusionv2"
version = "0.1.1+f2"
description = "StreamDiffusionV2 offline and online video diffusion inference."
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "StreamDiffusionV2 Contributors" }
]
keywords = ["video-diffusion", "streaming-inference", "wan", "fastapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"accelerate==1.10.1",
"av==13.1.0",
"diffusers==0.35.1",
"einops==0.8.1",
"fastapi==0.117.1",
"ftfy==6.3.1",
"imageio==2.37.0",
"imageio-ffmpeg==0.6.0",
"markdown2==2.5.4",
"numpy==1.24.4",
"omegaconf==2.3.0",
"Pillow==10.1.0",
"pydantic==2.10.6",
"psutil==7.2.2",
"regex==2024.11.6",
"scikit-image==0.25.2",
"sentencepiece==0.2.0",
"torch==2.6.0",
"torchaudio==2.6.0",
"torchvision==0.21.0",
"transformers==4.54.0",
"uvicorn==0.37.0",
"websockets==16.0",
]
[project.urls]
Homepage = "https://streamdiffusionv2.github.io/"
Repository = "https://github.com/chenfengxu714/StreamDiffusionV2"
Issues = "https://github.com/chenfengxu714/StreamDiffusionV2/issues"
[project.scripts]
streamdiffusionv2-single = "streamv2v.inference:main"
streamdiffusionv2-single-wo = "streamv2v.inference_wo_batch:main"
streamdiffusionv2-pipe = "streamv2v.inference_pipe:main"
[project.optional-dependencies]
"flash-attn" = [
"flash_attn==2.7.4.post1",
]
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["models*", "streamv2v*", "streamdiffusionv2*"]
[tool.setuptools.package-data]
"streamv2v.configs" = ["*.yaml"]