-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 789 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 789 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
33
34
35
36
37
[project]
name = "stable-diffusion-drawbridge-api"
version = "1.4"
description = "使用标准A1111-SDWEBUI API来调用各种绘画后端的多功能负载均衡API"
authors = [
{name = "DiaoDaiaChan", email = "diaodaiachan@qq.com"},
]
dependencies = [
"aiohttp",
"aiofiles",
"Pillow>=10.4.0",
"civitai-py",
"civitai",
"colorama",
"fastapi",
"fal-client",
"httpx==0.27.0",
"piexif",
"pydantic",
"PyYAML",
"redis",
"replicate",
"tqdm",
"uvicorn",
"gradio"
]
[tool.pdm]
exclude = ["./DrawBridgeAPI/config.yaml", "./DrawBridgeAPI/*.log", "./DrawBridgeAPI/saved_images"]
requires-python = ">=3.10"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"