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 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python 1.0 |
---|
6 | name py-fabio |
---|
7 | version 0.3.0 |
---|
8 | homepage https://github.com/kif/fabio |
---|
9 | master_sites https://pypi.python.org/packages/source/f/fabio/ |
---|
10 | |
---|
11 | license GPL-3 |
---|
12 | platforms darwin |
---|
13 | universal_variant no |
---|
14 | description Reading and handling data from two-dimensional X-ray detectors. |
---|
15 | long_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. |
---|
18 | maintainers ill.fr:coquelleni |
---|
19 | |
---|
20 | checksums rmd160 346d9401c75ff63d71f606ba2938d444c5aa8c2a \ |
---|
21 | sha256 477fd1fb2325da12f09fe9d59ebab2d010e94908f6a48b4ff3dc755b21e5aeea |
---|
22 | distname fabio-${version} |
---|
23 | python.versions 27 34 |
---|
24 | |
---|
25 | if {${name} ne ${subport}} { |
---|
26 | depends_lib-append port:py${python.version}-numpy |
---|
27 | } |
---|
28 | |
---|
29 | |
---|
30 | |
---|