This commit is contained in:
feng0w0
2026-01-21 09:59:18 +08:00
6 changed files with 380 additions and 0 deletions

View File

@@ -32,6 +32,18 @@ classifiers = [
"Operating System :: OS Independent",
]
[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.packages.find]
where = ["./"]
include = ["diffsynth", "diffsynth.*"]