From 08c029c59d1129c01bba3c4044d346b7a4f9a849 Mon Sep 17 00:00:00 2001 From: Timo Betcke Date: Tue, 5 Nov 2024 19:48:44 +0000 Subject: [PATCH] Added missing Python dependencies (#46) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f4aa2e4..d37f2a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,7 @@ description = "n-dimensional finite element definition library." readme = "README.md" requires-python = ">=3.8" license = { file = "LICENSE" } -authors = [ - {name = "Matthew Scroggs", email = "rust@mscroggs.co.uk"} -] +authors = [{ name = "Matthew Scroggs", email = "rust@mscroggs.co.uk" }] classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython", @@ -20,6 +18,8 @@ dependencies = [ "maturin>=1.7.2", "numpy", "cffi", + "pytest", + "pip", 'patchelf; platform_system == "Linux"', ] packages = ["ndelement"]