make it optionnal to ignore matplotlib

This commit is contained in:
Jean-Marie Mineau 2025-04-08 12:12:25 +02:00
parent 2e0c9e7833
commit 937f241af6
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
3 changed files with 7 additions and 3 deletions

View file

@ -11,11 +11,12 @@ requires-python = ">=3.13,<4.0.0"
[tool.poetry.dependencies]
theseus-frida = { path = "../frida" }
matplotlib = { path = "../matplotlib" }
matplotlib = { path = "../matplotlib", optional = true }
grodd-runner = {git = "ssh://git@gitlab.inria.fr/CIDRE/malware/grodd-runner.git", optional = true}
[tool.poetry.extras]
grodd = ["grodd-runner"]
no-plt = ["matplotlib"]
[tool.poetry]
packages = [{include = "theseus_autopatcher", from = "src"}]