From f69b3d96b610d3cfa56ac8080289622759d81133 Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Sun, 23 Mar 2025 08:48:13 +0800 Subject: [PATCH] Update dependencies in pyproject.toml and requirements.txt - Added new dependencies: piexif, Pillow, and requests to enhance image processing and HTTP request capabilities. - Ensured consistency between pyproject.toml and requirements.txt by including the same set of dependencies. --- pyproject.toml | 5 ++++- requirements.txt | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6ce77e49..4fa481ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,10 @@ dependencies = [ "jinja2", "safetensors", "watchdog", - "beautifulsoup4" + "beautifulsoup4", + "piexif", + "Pillow", + "requests" ] [project.urls] diff --git a/requirements.txt b/requirements.txt index 87d1fa12..88799022 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,7 @@ aiohttp jinja2 safetensors watchdog -beautifulsoup4 \ No newline at end of file +beautifulsoup4 +piexif +Pillow +requests \ No newline at end of file