forked from iconben/z-image-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 736 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (28 loc) · 736 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "z-image-studio"
version = "0.1.0"
description = "Z-Image Studio: local image toolkit (CLI + Web UI)"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"accelerate>=1.12.0",
"diffusers",
"fastapi>=0.123.0",
"peft>=0.18.0",
"platformdirs>=4.0.0",
"python-multipart>=0.0.20",
"sdnq",
"torchvision>=0.24.1",
"transformers>=4.57.3",
"uvicorn>=0.38.0",
]
[project.scripts]
zimg = "zimage.cli:main"
[tool.uv.sources]
diffusers = { git = "https://github.com/huggingface/diffusers" }
sdnq = { git = "https://github.com/Disty0/sdnq" }
[tool.hatch.build.targets.wheel]
packages = ["src/zimage"]