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 | |
---|
7 | name py-lmfit |
---|
8 | version 0.7.2 |
---|
9 | categories-append math |
---|
10 | license BSD |
---|
11 | maintainers gmail.com:jjstickel openmaintainer |
---|
12 | description Least-Squares Minimization with Bounds and Constraints |
---|
13 | long_description Built on top of scipy.optimize, lmfit provides a\ |
---|
14 | Parameter object which can be set as fixed or free,\ |
---|
15 | can have upper and/or lower bounds, or can be written\ |
---|
16 | in terms of algebraic constraints of other Parameters. |
---|
17 | platforms darwin |
---|
18 | homepage http://cars9.uchicago.edu/software/python/lmfit/index.html |
---|
19 | master_sites http://pypi.python.org/packages/source/l/lmfit |
---|
20 | distname lmfit-${version} |
---|
21 | |
---|
22 | checksums rmd160 be3dc08cefc715c866aa32f037d2bf7fc5273b2e \ |
---|
23 | sha256 f6c3cdf68ad70db304b450500c3064f0eff7d109c971378c10b86f195d0fc084 |
---|
24 | |
---|
25 | python.versions 26 27 32 |
---|
26 | python.default_version 27 |
---|
27 | |
---|
28 | if {$subport ne $name} { |
---|
29 | depends_build-append port:py${python.version}-setuptools |
---|
30 | depends_lib-append port:py${python.version}-scipy |
---|
31 | |
---|
32 | notes-append "If py${python.version}-uncertainties is also installed, propagation of uncertainties to constrained parameters will be enabled." |
---|
33 | } |
---|