summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pygps/package.py
blob: 41657612cab00c7afbf3c3e7303e0176105aff82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 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"

    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'))