Add missing dependency 'watchdog'

This commit is contained in:
Will Miao
2025-02-05 14:34:52 +08:00
parent e3f2e4245b
commit 184203dcc2
2 changed files with 8 additions and 2 deletions

View File

@@ -3,7 +3,12 @@ name = "comfyui-lora-manager"
description = "LoRA Manager for ComfyUI - Access it at http://localhost:8188/loras for managing LoRA models with previews and metadata integration." description = "LoRA Manager for ComfyUI - Access it at http://localhost:8188/loras for managing LoRA models with previews and metadata integration."
version = "0.5.7" version = "0.5.7"
license = {file = "LICENSE"} license = {file = "LICENSE"}
dependencies = ["aiohttp", "jinja2", "safetensors"] dependencies = [
"aiohttp",
"jinja2",
"safetensors",
"watchdog"
]
[project.urls] [project.urls]
Repository = "https://github.com/willmiao/ComfyUI-Lora-Manager" Repository = "https://github.com/willmiao/ComfyUI-Lora-Manager"

View File

@@ -1,3 +1,4 @@
aiohttp aiohttp
jinja2 jinja2
safetensors safetensors
watchdog