From d85c5d2c50de4147658a452ad107cebb2177fe4f Mon Sep 17 00:00:00 2001 From: danieljfarrell Date: Mon, 7 Oct 2024 12:42:03 +0100 Subject: [PATCH] Add PySpice and pixie-python The netlist is solved using PySpice in the latest code, this simplifies the code a bit and also allows this code to be moved out of solcore (at a later date, if wanted). The new GridPattern classes use a pixel drawing API from Pixie (pixie-python module) --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 22089c8c..a4ce7d0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,8 @@ dependencies = [ "yabox", "joblib", "solsesame", + "PySpice", + "pixie-python" ] dynamic = ["version"]