Files
DiffSynth-Studio/pyproject.toml
Jiaqi Xu 3235393fb5 Update package inclusion pattern in pyproject.toml
Update to install all the sub-packages inside diffsynth. Otherwise, the installed packages only contain __init__.py
2026-01-10 09:28:45 +08:00

41 lines
854 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "diffsynth"
version = "2.0.1"
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",
"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*"]
[tool.setuptools]
include-package-data = true