-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (53 loc) · 1.57 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[project]
name = "komamripy"
version = "0.0.10"
description = "Pulseq-compatible, high-performance MRI simulation in Python, powered by KomaMRI.jl."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Carlos Castillo Passi" },
{ name = "Anvika Singhal" },
]
maintainers = [
{ name = "Carlos Castillo Passi", email = "cacp@stanford.edu" },
]
keywords = ["MRI", "simulation", "Pulseq", "KomaMRI", "Julia", "medical-imaging"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"juliacall >=0.9.20",
]
[project.urls]
Homepage = "https://github.com/JuliaHealth/komamripy"
Repository = "https://github.com/JuliaHealth/komamripy"
Issues = "https://github.com/JuliaHealth/komamripy/issues"
[dependency-groups]
dev = [
"pytest",
"numpy",
"ruff",
"pypulseq",
"sigpy>=0.1.27",
# SigPy requires numba>=0.66 on Python 3.14.
"numba>=0.66",
"matplotlib>=3.11.0",
]
[tool.uv]
required-version = ">=0.11,<0.12"
[build-system]
requires = ["uv_build>=0.11.26,<0.12"]
build-backend = "uv_build"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]