blob: 26959f77e053bc6488a9bce06e9eade19d0c09b7 (
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
|
{% set name = 'pyfits' %}
{% set version = '3.4.0' %}
{% set tag = 'v' + version %}
{% set number = '0' %}
about:
home: https://github.com/spacetelescope/{{ name }}
license: BSD
summary: Reads FITS images and tables into numpy arrays and manipulates FITS headers
package:
name: {{ name }}
version: {{ version }}
build:
number: {{ number }}
source:
git_tag: {{ tag }}
git_url: https://github.com/spacetelescope/{{ name }}.git
requirements:
build:
- d2to1
- stsci.distutils
- numpy x.x
- setuptools
- python x.x
run:
- numpy x.x
- python
#test:
# imports:
# -
# commands:
# -
|