https://github.com/samuelstjean/nlsam
Raw File
Tip revision: 0b00d57ca8d9740dcbc24493be495450efe5bdf8 authored by Samuel St-Jean on 04 March 2024, 20:37:55 UTC
Update cibuildwheel.yml (#132)
Tip revision: 0b00d57
pyproject.toml
[build-system]
requires = ["Cython>=0.29.33",
            "scipy>=1.5",
            "oldest-supported-numpy",
            "setuptools",
            "wheel"]
build-backend = "setuptools.build_meta"


[project]
name = "nlsam"
version = '0.7.1'
authors = [{name = "Samuel St-Jean"}]
description='Implementation of "Non Local Spatial and Angular Matching : Enabling higher spatial resolution diffusion MRI datasets through adaptive denoising"'
readme = "README.md"
requires-python = ">=3.7"
license = {text = "GPLv3"}

dependencies = [
    'numpy>=1.19',
    'scipy>=1.5',
    'cython>=0.29.33',
    'nibabel>=2.0',
    'joblib>=0.14.1',
    'autodmri>=0.2.1',
    'spams-bin>=2.6.2',
    'tqdm>=4.56',
    'dipy>=0.11']


[project.urls]
homepage = "https://github.com/samuelstjean/nlsam"
documentation = "https://nlsam.readthedocs.io/en/latest/"
changelog = "https://github.com/samuelstjean/nlsam/blob/master/CHANGELOG.md"
back to top