Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "mrzerocore"
version = "0.4.6"
version = "0.4.7"
description = "Core functionality of MRzero"
authors = [
{name = "Jonathan Endres", email = "jonathan.endres@uk-erlangen.de"},
Expand All @@ -16,12 +16,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"ismrmrd",
"matplotlib>=3.5",
"pydisseqt>=0.1.13",
"pypulseq<1.5.0",
"pypulseq<1.5",
"requests>=2.20",
"scikit-image",
"scipy>=1.7",
Expand All @@ -31,6 +31,11 @@ dependencies = [
"nibabel",
]

# --- OPTIONAL INSTALLS ---
[project.optional-dependencies]
# to select pypulseq 1.4 or <1.5 use pip install mrzerocore[pp14]
pp15 = ["pypulseq"]

[project.urls]
Repository = "https://github.com/MRsources/MRzero-Core"
Documentation = "https://mrsources.github.io/MRzero-Core/"
Expand All @@ -41,3 +46,4 @@ profile = "release"
strip = true
module-name = "MRzeroCore._prepass"
python-source = "python"

Loading