[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "spatial-suv-charact" version = "0.1.0" description = "Utilities for spatial characterization of SUV distributions in PET NIfTI images." readme = "spatial_suv_charact/README.md" requires-python = ">=3.10" authors = [ { name = "Martin Horvat" } ] license = { text = "MIT" } keywords = ["PET", "SUV", "NIfTI", "radiomics", "medical imaging"] dependencies = [ "numpy>=1.23", "pandas>=1.5", "nibabel>=5.0", "scipy>=1.10", "scikit-image>=0.20", "plotly>=5.0" ] [project.optional-dependencies] dev = [ "pytest", "ipykernel", "jupyterlab", "ruff", ] [tool.setuptools.packages.find] where = ["."] include = ["spatial_suv_charact*"] exclude = ["data*", "notebooks*"] [tool.ruff] line-length = 88