added scipy and numpy to pyproject.toml, clarified dependencies when using uv run DAMARIS3

This commit is contained in:
2026-07-11 22:08:17 +02:00
parent 058716f3c0
commit d48f96e498
2 changed files with 12 additions and 3 deletions
+9
View File
@@ -15,3 +15,12 @@ Alternatively you can install withoout the system-site-packages:
pip install -e . pip install -e .
This will download newer packages and install them in the venv. This will download newer packages and install them in the venv.
Using uv
========
Dependicies needed:
sudo apt install libgirepository1.0-dev pkg-config
Then you can start DAMARIS3:
uv run DAMARIS3
+3 -3
View File
@@ -14,12 +14,12 @@ license = {text = "GPL-2.0"}
keywords = ["NMR", "data-processing"] keywords = ["NMR", "data-processing"]
readme = {file = "README", content-type = "text/plain"} readme = {file = "README", content-type = "text/plain"}
dependencies = [ dependencies = [
"scipy >= 0.14.0", "scipy>=0.14.0",
"numpy >= 1.8.2, < 2.0", "numpy>=1.8.2,<2.0",
"tables >= 3.1.1", "tables >= 3.1.1",
"matplotlib >= 1.4.1, <= 3.6", "matplotlib >= 1.4.1, <= 3.6",
"pyxdg", "pyxdg",
"PyGObject >= 3.14.0, <= 3.51.0" "PyGObject >= 3.14.0, <= 3.51.0",
] ]
authors = [ authors = [
{name = "Achim Gädke"}, {name = "Achim Gädke"},