summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pygps/package.py
blob: 4e13dc4f9bdae417e37ce010ade28938dda4dfd8 (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
# Copyright 2013-2024 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 PyPygps(PythonPackage):
    """pyGPs is a Python library for Gaussian Process (GP)
    Regression and Classification."""

    homepage = "https://github.com/marionmari/pyGPs"
    pypi = "pygps/pyGPs-1.3.5.tar.gz"

    license("DOC")

    version("1.3.5", sha256="5af668415a7bf1666c7c6da3bb09d29e48c395862c6feb23964b476972a015d4")

    depends_on("py-setuptools", type="build")
    depends_on("py-numpy", type=("build", "run"))
    depends_on("py-scipy@0.13:", type=("build", "run"))
    depends_on("py-matplotlib", type=("build", "run"))
    depends_on("py-future", type=("build", "run"))