-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 982 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 982 Bytes
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
[build-system]
requires = ["setuptools>=78"]
build-backend = "setuptools.build_meta"
[project]
name = "ismrmrd"
dynamic = ["version"]
dependencies = ["h5py>=2.3", "numpy>=1.22.0", "xsdata>=26.2"]
requires-python = ">=3.10"
authors = [{name = "ISMRMRD Developers"}]
description = "Python implementation of ISMRMRD"
readme = "README.md"
license-files = ["LICENSE"]
license = "LicenseRef-IsmrmrdSoftwareLicense"
keywords = ["ismrmrd"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Medical Science Apps."
]
[project.urls]
Homepage = "https://github.com/ismrmrd/ismrmrd-python"
Documentation = "https://github.com/ismrmrd/ismrmrd-python"
Repository = "https://github.com/ismrmrd/ismrmrd-python"
[project.optional-dependencies]
dev = ["pytest", "build", "setuptools>=78", "xsdata[cli]==26.2"]