-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.46 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[build-system]
requires = ["poetry-core>=1.1.12"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "PyMRItools"
version = "2024.0.0"
description = "Toolbox for all things MRI with python. Sequence Programming, Reconstruction, Simulation, Analysis."
readme = "README.md"
license = "GPL-3.0-or-later"
#keywords = []
authors = [
"Jochen Schmidt <jochen.schmidt@tuta.io>",
]
maintainers = [
"Jochen Schmidt <jochen.schmidt@tuta.io>",
"Patrick Scheibe <patrick@halirutan.de>"
]
#classifiers = [
# "Development Status :: 4 - Beta",
# "Programming Language :: Python"
#]
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu124"
priority = "explicit"
[tool.poetry.dependencies]
python = "^3.10"
torch = {version = "2.4.1", source = "torch"}
polars = "1.8.2"
kaleido = "0.2.1"
scipy = "1.14.1"
numpy = "1.24.2"
plotly = "5.16.1"
simple-parsing = "0.1.6"
tqdm = "4.66.5"
nibabel = "5.2.1"
wandb = "0.18.2"
autodmri = "0.2.7"
[tool.poetry.urls]
"Repository" = "https://github.com/schmidt-jo/PyMRItools"
"Bug Tracker" = "https://github.com/schmidt-jo/PyMRItools"
[tool.poetry.scripts]
simulation_emc = "pymritools.simulation.emc.core.simulate:main"
processing_unring = "pymritools.processing.unringing.gibbs_unr:main"
processing_denoise_mppca = "pymritools.processing.denoising.mppca.denoise:main"
modeling_mono_exponential_fit = "pymritools.modeling.decay.mexp:main"
modeling_dictionary_grid_search = "pymritools.modeling.dictionary.grid_search:main"