py-intensity-normalization: add package (at version 2.1.1) (#27593)
* py-scikit-fuzzy: new package (at version 0.4.2) * py-intensity-normalization: new package (at version 2.1.1)
This commit is contained in:
parent
838294b10d
commit
02b4a65086
2 changed files with 48 additions and 0 deletions
|
@ -0,0 +1,27 @@
|
|||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class PyIntensityNormalization(PythonPackage):
|
||||
"""Normalize intensities of images from various MRI modalities"""
|
||||
|
||||
homepage = "https://github.com/jcreinhold/intensity-normalization"
|
||||
pypi = "intensity-normalization/intensity-normalization-2.1.1.tar.gz"
|
||||
|
||||
version('2.1.1', sha256='686b86754a9a520a03f793cb15c87e945f68ede78ac0ad1b3564c5d5b7ac9486')
|
||||
|
||||
depends_on('python@3.6:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type=('build',))
|
||||
depends_on('py-pytest-runner', type=('build',))
|
||||
depends_on('py-matplotlib', type=('build', 'run'))
|
||||
depends_on('py-nibabel', type=('build', 'run'))
|
||||
depends_on('py-numpy', type=('build', 'run'))
|
||||
depends_on('py-scikit-fuzzy', type=('build', 'run'))
|
||||
depends_on('py-scikit-image', type=('build', 'run'))
|
||||
depends_on('py-scikit-learn', type=('build', 'run'))
|
||||
depends_on('py-scipy', type=('build', 'run'))
|
||||
depends_on('py-statsmodels', type=('build', 'run'))
|
21
var/spack/repos/builtin/packages/py-scikit-fuzzy/package.py
Normal file
21
var/spack/repos/builtin/packages/py-scikit-fuzzy/package.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
||||
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
||||
#
|
||||
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
||||
|
||||
from spack import *
|
||||
|
||||
|
||||
class PyScikitFuzzy(PythonPackage):
|
||||
"""Fuzzy logic toolkit for SciPy"""
|
||||
|
||||
homepage = "https://github.com/scikit-fuzzy/scikit-fuzzy"
|
||||
pypi = "scikit-fuzzy/scikit-fuzzy-0.4.2.tar.gz"
|
||||
|
||||
version('0.4.2', sha256='1ab12424d847ede1bc79670d8058167be7c8dd660b00756e9b844817ceb1e12e')
|
||||
|
||||
depends_on('python@3.6:', type=('build', 'run'))
|
||||
depends_on('py-setuptools', type=('build',))
|
||||
depends_on('py-networkx@1.9:', type=('build', 'run'))
|
||||
depends_on('py-numpy@1.6:', type=('build', 'run'))
|
||||
depends_on('py-scipy@0.9:', type=('build', 'run'))
|
Loading…
Reference in a new issue