From d327e9cc091dcbbdb9c51d67d2073d8195112673 Mon Sep 17 00:00:00 2001 From: Timotej Bernat Date: Fri, 3 Jan 2025 16:14:48 -0700 Subject: [PATCH] Made "rich" package a required dependency --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 935d24b..fcdc064 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,9 +24,10 @@ dependencies = [ "importlib-resources", # added to allow incorporation of `data` later on "numpy<2.0.0", "scipy", - "matplotlib", - "pillow", "pandas", + "rich", + "pillow", + "matplotlib", "anytree", "networkx", "rdkit", @@ -52,7 +53,6 @@ jupyter = [ "ipywidgets==8.0.4", ] visuals = [ - "rich", "nglview==3.0.6", "py3Dmol", ]