-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (40 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
43 lines (40 loc) · 1.1 KB
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
[build-system]
requires = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "mrzerocore"
version = "0.4.6"
description = "Core functionality of MRzero"
authors = [
{name = "Jonathan Endres", email = "jonathan.endres@uk-erlangen.de"},
]
readme = "README.md"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: GNU Affero General Public License v3",
]
requires-python = ">=3.9"
dependencies = [
"ismrmrd",
"matplotlib>=3.5",
"pydisseqt>=0.1.13",
"pypulseq<1.5.0",
"requests>=2.20",
"scikit-image",
"scipy>=1.7",
"torchkbnufft",
"torch>=1.12",
"tqdm",
"nibabel",
]
[project.urls]
Repository = "https://github.com/MRsources/MRzero-Core"
Documentation = "https://mrsources.github.io/MRzero-Core/"
MRzero-Paper = "https://arxiv.org/abs/2002.04265"
[tool.maturin]
profile = "release"
strip = true
module-name = "MRzeroCore._prepass"
python-source = "python"