From 0bcf5c1b159e7995f9b4326087874795a9237836 Mon Sep 17 00:00:00 2001 From: Amaury Bilocq <amaurybilocq@mac.home> Date: Fri, 21 Feb 2025 23:04:46 +0100 Subject: [PATCH] Change name of main.py to example.py + add few dependencies --- main.py => example.py | 0 pyproject.toml | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename main.py => example.py (100%) diff --git a/main.py b/example.py similarity index 100% rename from main.py rename to example.py diff --git a/pyproject.toml b/pyproject.toml index 3ae995c..6f15e7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,8 @@ dependencies = [ "numpy>=1.21", # Required for numerical computations "numba>=0.56", # For JIT optimization "pytest>=7.0", # For testing - "matplotlib>=3.4" # For plotting + "matplotlib>=3.4", # For plotting + "scipy>=1.7" # For scientific computations ] [project.optional-dependencies] -- GitLab