- rust: command line binary, save as mp4, save as tiff, ome metadata, more methods for View, bugfixes, less unsafe code - python: ome as dict
56 lines
1.4 KiB
TOML
56 lines
1.4 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",
|
|
"tiffwrite",
|
|
"ome-metadata >= 0.2.1",
|
|
"tqdm",
|
|
]
|
|
|
|
[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
|