diff --git a/pyproject.toml b/pyproject.toml index f130777..2f2ddf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,2 +1,113 @@ [build-system] -requires = ["setuptools", "wheel", "scikit-build"] +requires = ["scikit-build-core"] +build-backend = "scikit_build_core.build" + +[project] +name = "itk-ultrasound" +version = "0.7.0" +description = "Filters for use with the Insight Toolkit (ITK) that may be particularly useful for the reconstruction and analysis of ultrasound images." +readme = "README.rst" +license = {file = "LICENSE"} +authors = [ + { name = "Matthew McCormick", email = "matt.mccormick@kitware.com" }, +] +keywords = [ + "itk", +] +classifiers = [ + "Development Status :: 4 - Beta", + "Intended Audience :: Developers", + "Intended Audience :: Education", + "Intended Audience :: Healthcare Industry", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: Apache Software License", + "Operating System :: Android", + "Operating System :: MacOS", + "Operating System :: Microsoft :: Windows", + "Operating System :: POSIX", + "Operating System :: Unix", + "Programming Language :: C++", + "Programming Language :: Python", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Information Analysis", + "Topic :: Scientific/Engineering :: Medical Science Apps.", + "Topic :: Software Development :: Libraries", +] +requires-python = ">=3.8" +dependencies = [ + "itk == 5.4.*", + "itk-meshtopolydata>=0.10.0", + "itk-bsplinegradient>=0.2.10", + "itk-higherorderaccurategradient>=1.2.0", + "itk-splitcomponents>=2.1.0", + "itk-strain>=0.4.0", +] + +[project.urls] +Download = "https://www.insight-journal.org/browse/publication/722" +Homepage = "https://www.insight-journal.org/browse/publication/722" + +[tool.scikit-build] +# The versions of CMake to allow. If CMake is not present on the system or does +# not pass this specifier, it will be downloaded via PyPI if possible. An empty +# string will disable this check. +cmake.version = ">=3.16.3" + +# A list of args to pass to CMake when configuring the project. Setting this in +# config or envvar will override toml. See also ``cmake.define``. +cmake.args = [] + +# A table of defines to pass to CMake when configuring the project. Additive. +cmake.define = {} + +# Verbose printout when building. +cmake.verbose = true + +# The build type to use when building the project. Valid options are: "Debug", +# "Release", "RelWithDebInfo", "MinSizeRel", "", etc. +cmake.build-type = "Release" + +# The source directory to use when building the project. Currently only affects +# the native builder (not the setuptools plugin). +cmake.source-dir = "." + +# The versions of Ninja to allow. If Ninja is not present on the system or does +# not pass this specifier, it will be downloaded via PyPI if possible. An empty +# string will disable this check. +ninja.version = ">=1.11" + +# The logging level to display, "DEBUG", "INFO", "WARNING", and "ERROR" are +# possible options. +logging.level = "INFO" + +# Files to include in the SDist even if they are skipped by default. Supports +# gitignore syntax. +sdist.include = [] + +# Files to exclude from the SDist even if they are included by default. Supports +# gitignore syntax. +sdist.exclude = [] + +# A list of license files to include in the wheel. Supports glob patterns. +wheel.license-files = ["LICEN[CS]E*",] + +# Target the platlib or the purelib. If not set, the default is to target the +# platlib if wheel.cmake is true, and the purelib otherwise. +wheel.platlib = "false" + +# If CMake is less than this value, backport a copy of FindPython. Set to 0 +# disable this, or the empty string. +backport.find-python = "3.26.1" + +# Select the editable mode to use. Can be "redirect" (default) or "inplace". +editable.mode = "redirect" + +# Rebuild the project when the package is imported. The build-directory must be +# set. +editable.rebuild = false + +# If set, this will provide a method for scikit-build-core backward compatibility. +minimum-version = "0.8.2" + +# The build directory. Defaults to a temporary directory, but can be set. +build-dir = "build/{wheel_tag}" diff --git a/setup.py b/setup.py deleted file mode 100644 index b936113..0000000 --- a/setup.py +++ /dev/null @@ -1,51 +0,0 @@ -from __future__ import print_function -from os import sys - -from skbuild import setup - -setup( - name='itk-ultrasound', - version='0.6.3', - author='Matthew McCormick', - author_email='matt.mccormick@kitware.com', - packages=['itk'], - package_dir={'itk': 'itk'}, - download_url=r'https://github.com/KitwareMedical/ITKUltrasound', - description=(r'Filters for use with the Insight Toolkit (ITK)' - ' that may be particularly useful for the reconstruction and' - ' analysis of ultrasound images.'), - long_description=(r'This package contains filters for use with the Insight Toolkit' - ' (ITK) for the reconstruction and analysis of ultrasound images. This includes' - ' B-mode image generation, scan conversion, strain imaging, and ' - ' ultrasound spectroscopy.'), - classifiers=[ - "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python", - "Programming Language :: C++", - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: Healthcare Industry", - "Intended Audience :: Science/Research", - "Topic :: Scientific/Engineering", - "Topic :: Scientific/Engineering :: Medical Science Apps.", - "Topic :: Scientific/Engineering :: Information Analysis", - "Topic :: Software Development :: Libraries", - "Operating System :: Android", - "Operating System :: Microsoft :: Windows", - "Operating System :: POSIX", - "Operating System :: Unix", - "Operating System :: MacOS" - ], - license='Apache', - keywords='ITK InsightToolkit ultrasound imaging', - url=r'https://www.insight-journal.org/browse/publication/722', - install_requires=[ - r'itk>=5.3.0', - r'itk-meshtopolydata>=0.10.0', - r'itk-bsplinegradient>=0.2.10', - r'itk-higherorderaccurategradient>=1.2.0', - r'itk-splitcomponents>=2.1.0', - r'itk-strain>=0.4.0', - ] - )