-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.16 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
[tool.poetry]
name = "stablepy"
version = "0.6.1"
description = "A tool for easy use of stable diffusion"
authors = ["Roger Condori(R3gm) <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
torch = {version = "*", source = "pytorch-gpu-src"}
torchvision = {version = "*", source = "pytorch-gpu-src"}
torchaudio = {version = "*", source = "pytorch-gpu-src"}
omegaconf = ">=2.3.0"
diffusers = "0.31.0"
compel = "2.0.2"
invisible-watermark = "0.2.0"
transformers = ">=4.47.1"
accelerate = "1.2.1"
safetensors = ">=0.4.3"
mediapy = ">=1.1.9"
ipywidgets = "7.7.1"
controlnet-aux = "0.0.6"
mediapipe = ">=0.10.5"
pytorch-lightning = ">=2.0.9.post0"
ultralytics = "<=8.3.48"
huggingface_hub = ">=0.23.1"
peft = ">=0.11.1"
torchsde = ">=0.2.6"
onnxruntime = ">=1.18.0"
insightface = ">=0.7.3"
opencv-contrib-python = ">=4.8.0.76"
sentencepiece = "*"
numpy = "<=1.26.4"
lark = "*"
spandrel = "0.3.4"
spandrel-extra-arches = "0.1.1"
facexlib = "0.3.0"
[[tool.poetry.source]]
name = "pytorch-gpu-src"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"