blob: 8d5177b650b9d9f1c96ee773e6827a79c5223c6d (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
 | {% set name = 'pyfftw' %}
{% set version = '0.9.2' %}
{% set number = '3' %}
about:
    home: http://hgomersall.github.com/pyFFTW
    license: BSD
    summary: |
        A pythonic wrapper around FFTW, the FFT library, presenting a unified
        interface for all the supported transforms
build:
    number: {{ number }}
package:
    name: {{ name }}
    version: {{ version }}
requirements:
    build:
    - fftw
    - cython
    - pkg-config [osx]
    - setuptools
    - numpy {{ numpy }}
    - python {{ python }}
    run:
    - cython
    - fftw
    - numpy
    - python
source:
    fn: pyFFTW-{{ version }}.tar.gz
    url: https://pypi.python.org/packages/source/p/pyFFTW/pyFFTW-{{ version }}.tar.gz
test:
    imports:
    - pyfftw
 |