add dependencies

This commit is contained in:
2025-12-23 11:07:14 +01:00
parent c0040539cd
commit 9c61915939
2 changed files with 7 additions and 6 deletions

10
INSTALL
View File

@@ -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

View File

@@ -28,6 +28,9 @@ classifiers = [
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
dependencies = [
"numpy",
]
[tool.setuptools.dynamic]
version = {attr = "fvr.__version__"}