Files
ndbioimage/pyproject.toml
Wim Pomp 2247a994be - change to MIT license
- thread local image reader instances
- add keywords and categories
- add python dependencies
- README
2025-02-17 19:53:34 +01:00

63 lines
1.5 KiB
TOML

[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"
[project]
name = "ndbioimage"
description = "Bio image reading, metadata and some affine registration."
authors = [
{ name = "W. Pomp", email = "w.pomp@nki.nl" }
]
license = "MIT"
readme = "README.md"
keywords = ["bioformats", "imread", "numpy", "metadata"]
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = ["version"]
dependencies = [
"numpy",
"pandas",
"tiffwrite",
"ome-types",
"pint",
"tqdm",
"lxml",
"pyyaml",
"parfor",
"SimpleITK-SimpleElastix",
"scikit-image",
]
[project.optional-dependencies]
test = ["pytest"]
write = ["matplotlib", "scikit-video"]
[project.urls]
Repository = "https://github.com/wimpomp/ndbioimage/tree/rs"
[project.scripts]
ndbioimage = "ndbioimage:main"
[tool.pytest.ini_options]
filterwarnings = ["ignore:::(colorcet)"]
[tool.maturin]
python-source = "py"
features = ["pyo3/extension-module", "python", "gpl-formats"]
module-name = "ndbioimage.ndbioimage_rs"
exclude = ["py/ndbioimage/jassets/*", "py/ndbioimage/deps/*"]
[tool.isort]
line_length = 119