-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aebfd9c
commit 4acaff1
Showing
1 changed file
with
21 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,19 +22,20 @@ description = "MR image reconstruction and processing package specifically devel | |
readme = "README.md" | ||
requires-python = ">=3.10,<3.14" | ||
dynamic = ["version"] | ||
keywords = ["MRI", | ||
"qMRI", | ||
"medical imaging", | ||
"physics-informed learning", | ||
"model-based reconstruction", | ||
"quantitative", | ||
"signal models", | ||
"machine learning", | ||
"deep learning", | ||
"reconstruction", | ||
"processing", | ||
"Pulseq", | ||
"PyTorch", | ||
keywords = [ | ||
"MRI", | ||
"qMRI", | ||
"medical imaging", | ||
"physics-informed learning", | ||
"model-based reconstruction", | ||
"quantitative", | ||
"signal models", | ||
"machine learning", | ||
"deep learning", | ||
"reconstruction", | ||
"processing", | ||
"Pulseq", | ||
"PyTorch", | ||
] | ||
authors = [ | ||
{ name = "MRpro Team", email = "[email protected]" }, | ||
|
@@ -79,12 +80,16 @@ test = [ | |
"pytest-cov", | ||
"pytest-xdist", | ||
] | ||
docs = ["sphinx", | ||
docs = [ | ||
"sphinx", | ||
"sphinx_rtd_theme", | ||
"sphinx-pyproject", | ||
"myst-nb", | ||
"sphinx-mathjax-offline", | ||
] | ||
"sphinx_github_style", | ||
"sphinx-autodoc-typehints", | ||
|
||
] | ||
notebook = [ | ||
"zenodo_get", | ||
"ipykernel", | ||
|
@@ -103,7 +108,7 @@ testpaths = ["tests"] | |
filterwarnings = [ | ||
"error", | ||
"ignore:'write_like_original':DeprecationWarning:pydicom:", | ||
"ignore:Anomaly Detection has been enabled:UserWarning", #torch.autograd | ||
"ignore:Anomaly Detection has been enabled:UserWarning", #torch.autograd | ||
] | ||
addopts = "-n auto" | ||
markers = ["cuda : Tests only to be run when cuda device is available"] | ||
|