Files
DiffSynth-Studio/pyproject.toml
2025-11-04 10:59:29 +08:00

39 lines
809 B
TOML

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