Ticket #51467: PortFile

File PortFile, 1.4 KB (added by coquelleni@…, 8 years ago)

Updated Portfile

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem          1.0
5PortGroup           python 1.0
6name                py-fabio
7version             0.3.0
8homepage            https://github.com/kif/fabio
9master_sites        https://pypi.python.org/packages/source/f/fabio/
10
11license             GPL-3
12platforms           darwin
13universal_variant   no
14description         Reading and handling data from two-dimensional X-ray detectors.
15long_description    FabIO is a Python module written for easy and transparent reading of raw two-dimensional data from various X-ray detectors. \
16                    The module provides a function for reading any image and returning a fabioimage object which contains both metadata (header information) and the raw data. \
17                    All fabioimage object offer additional methods to extract information about the image and to open other detector images from the same data series.
18maintainers         ill.fr:coquelleni
19
20checksums           rmd160  346d9401c75ff63d71f606ba2938d444c5aa8c2a \
21                    sha256  477fd1fb2325da12f09fe9d59ebab2d010e94908f6a48b4ff3dc755b21e5aeea
22distname            fabio-${version}
23python.versions     27 34
24
25if {${name} ne ${subport}} {
26    depends_lib-append  port:py${python.version}-numpy
27}
28                   
29
30