From b07811a6adfbd1142c9478d7f8c347e202e022a4 Mon Sep 17 00:00:00 2001 From: David Maisonave <47364845+David-Maisonave@users.noreply.github.com> Date: Mon, 6 Jan 2025 02:35:51 -0500 Subject: [PATCH] Updated requirements with pyyaml --- .gitignore | 1 + plugins/FileMonitor/README.md | 3 +++ plugins/FileMonitor/requirements.txt | 3 ++- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 70f7336..7cd8203 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ desktop.ini *.tlog *.user *.7z +*.zip *.swp data.csv /boost diff --git a/plugins/FileMonitor/README.md b/plugins/FileMonitor/README.md index 8292b18..9a8a42e 100644 --- a/plugins/FileMonitor/README.md +++ b/plugins/FileMonitor/README.md @@ -159,6 +159,9 @@ To configure the schedule or to add new task, edit the **task_scheduler** sectio - `pip install requests` - `pip install watchdog` - `pip install schedule` + - `pip install pyyaml` + +Note: pyyaml is only needed for a Docker setup. ## Installation diff --git a/plugins/FileMonitor/requirements.txt b/plugins/FileMonitor/requirements.txt index c9d8b8d..8b97bb0 100644 --- a/plugins/FileMonitor/requirements.txt +++ b/plugins/FileMonitor/requirements.txt @@ -1,4 +1,5 @@ stashapp-tools >= 0.2.50 requests watchdog -schedule \ No newline at end of file +schedule +pyyaml \ No newline at end of file