From 9c619159398caad336e80488fc71bcfa797b5010 Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Tue, 23 Dec 2025 11:07:14 +0100 Subject: [PATCH] add dependencies --- INSTALL | 10 ++++------ pyproject.toml | 3 +++ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/INSTALL b/INSTALL index d362ab1..ec3c0df 100644 --- a/INSTALL +++ b/INSTALL @@ -1,9 +1,7 @@ * Installation -python -m pip install . --break-system-packages -# or in 'development mode' -python -m pip install -e . --break-system-packages -# or inside a virtual environment using e.g. poetry -poetry install + +python -m pip install . * Uninstallation -python -m pip uninstall fvr --break-system-packages + +python -m pip uninstall fvr diff --git a/pyproject.toml b/pyproject.toml index 5769ccc..dbab372 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,6 +28,9 @@ classifiers = [ "Topic :: Scientific/Engineering", "Typing :: Typed", ] +dependencies = [ + "numpy", +] [tool.setuptools.dynamic] version = {attr = "fvr.__version__"}