summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-scikit-fuzzy/package.py
blob: e534df9f1b8c1e4ecdc546b69418ddf76af66ce3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2013-2022 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.package 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'))