From 36403f2eb9dcf4c67229c89ba8839772210f4035 Mon Sep 17 00:00:00 2001 From: "Andre F. Rendeiro" Date: Fri, 15 Mar 2024 16:44:25 +0100 Subject: [PATCH] add missing dependencies --- pyproject.toml | 11 +++++++---- requirements.txt | 11 +++++++---- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 01d8299..7446fb3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,17 +21,20 @@ classifiers = [ #license = "gpt3" requires-python = ">=3.10" dependencies = [ - "requests", - "tqdm", - "opencv-python", - "scikit-image", "h5py", "matplotlib", "numpy", + "opencv-python", "openslide-python", + "pandas", "Pillow", + "requests", + "scikit-image", + "scikit-learn", + "scipy", "torch", "torchvision", + "tqdm", ] dynamic = ['version'] diff --git a/requirements.txt b/requirements.txt index cba7dd0..24cbabc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,11 +1,14 @@ -requests -tqdm -opencv-python -scikit-image h5py matplotlib numpy +opencv-python openslide-python +pandas Pillow +requests +scikit-image +scikit-learn +scipy torch torchvision +tqdm