diff --git a/pyproject.toml b/pyproject.toml index 241f6374..c9057a12 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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." version = "0.5.7" license = {file = "LICENSE"} -dependencies = ["aiohttp", "jinja2", "safetensors"] +dependencies = [ + "aiohttp", + "jinja2", + "safetensors", + "watchdog" +] [project.urls] Repository = "https://github.com/willmiao/ComfyUI-Lora-Manager" diff --git a/requirements.txt b/requirements.txt index 5b224e66..5c670ec0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ aiohttp jinja2 -safetensors \ No newline at end of file +safetensors +watchdog \ No newline at end of file