From d08a25026b1778a31c44c68995847b1ae6549d1a Mon Sep 17 00:00:00 2001 From: Amaury Bilocq <amaurybilocq@mac.home> Date: Fri, 21 Feb 2025 22:56:38 +0100 Subject: [PATCH] Add matplotlib dependency --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 88b0b1e..a5b1991 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,9 +14,10 @@ readme = "README.md" requires-python = ">=3.6" dependencies = [ - "numpy>=1.21", # Required for numerical computations - "numba>=0.56", # For JIT optimization - "pytest>=7.0" # For testing + "numpy>=1.21", # Required for numerical computations + "numba>=0.56", # For JIT optimization + "pytest>=7.0" # For testing + "matplotlib>=3.4" # For plotting ] [project.optional-dependencies] -- GitLab