summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-coclust/package.py
blob: db5ae24c97c8ed8f8d17b8ce520c7d82c04d964f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Copyright 2013-2023 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 PyCoclust(PythonPackage):
    """Coclust provides both a Python package which implements several diagonal and
    non-diagonal co-clustering algorithms, and a ready to use script to perform co-
    clustering"""

    homepage = "https://github.com/franrole/cclust_package"
    pypi = "coclust/coclust-0.2.1.tar.gz"

    maintainers("meyersbs")

    version("0.2.1", sha256="47800cc71b91fcf5551252dca865ac2d917891afc458972c3a0bca0de4643cfb")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-scipy", type=("build", "run"))
    depends_on("py-scikit-learn", type=("build", "run"))

    variant("alldeps", default=False, description="matplotlib support")
    depends_on("py-matplotlib@1.5:", when="+alldeps", type=("build", "run"))