From 184203dcc234d5f21a3d120af3807d4ce54f3c03 Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Wed, 5 Feb 2025 14:34:52 +0800 Subject: [PATCH] Add missing dependency 'watchdog' --- pyproject.toml | 7 ++++++- requirements.txt | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) 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