Files
DiffSynth-Studio/pyproject.toml
Hong Zhang 4741542523 Ltx2.3 a2v& retake video and audio (#1346)
* temp commit

* support ltx2 a2v

* support ltx2.3 retake video and audio

* add news

* minor fix
2026-03-12 14:16:01 +08:00

54 lines
1.1 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "diffsynth"
version = "2.0.5"
description = "Enjoy the magic of Diffusion models!"
authors = [{name = "ModelScope Team"}]
license = {text = "Apache-2.0"}
requires-python = ">=3.10.1"
dependencies = [
"torch>=2.0.0",
"torchvision",
"torchaudio",
"transformers",
"imageio",
"imageio[ffmpeg]",
"safetensors",
"einops",
"sentencepiece",
"protobuf",
"modelscope",
"ftfy",
"pandas",
"accelerate",
"peft",
"datasets",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["./"]
include = ["diffsynth", "diffsynth.*"]
[project.optional-dependencies]
npu_aarch64 = [
"torch==2.7.1",
"torch-npu==2.7.1",
"torchvision==0.22.1"
]
npu = [
"torch==2.7.1+cpu",
"torch-npu==2.7.1",
"torchvision==0.22.1+cpu"
]
[tool.setuptools]
include-package-data = true