1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | PortGroup github 1.0 |
---|
7 | |
---|
8 | github.setup markchil gptools 0.1 v |
---|
9 | |
---|
10 | name py-gptools |
---|
11 | |
---|
12 | categories-append science math |
---|
13 | |
---|
14 | platforms darwin |
---|
15 | supported_archs noarch |
---|
16 | license GPL-3 |
---|
17 | maintainers fusion.gat.com:smithsp openmaintainer |
---|
18 | description Gaussian process regression with derivative constraints and predictions. |
---|
19 | long_description \ |
---|
20 | gptools is a Python package that provides a convenient, powerful and \ |
---|
21 | extensible implementation of Gaussian process regression (GPR). Central \ |
---|
22 | to gptool's implementation is support for derivatives and their variances.\ |
---|
23 | Furthermore, the implementation supports the incorporation of arbitrary \ |
---|
24 | linearly transformed quantities into the GP. |
---|
25 | checksums rmd160 5505e57a8fe51f61b534db07a569624e1507c77d \ |
---|
26 | sha256 5988a7998041f8600c1486646a472a34a2148cbc22d8004014d4fb01f9ed40c3 |
---|
27 | |
---|
28 | python.versions 27 |
---|
29 | |
---|
30 | if {$subport != $name} { |
---|
31 | depends_build-append port:py${python.version}-setuptools |
---|
32 | livecheck.type none |
---|
33 | depends_lib-append port:py${python.version}-emcee \ |
---|
34 | port:py${python.version}-triangle |
---|
35 | } |
---|