blob: 3c3f95d48c6b46d2c68631f90d4e67fc2623ce9f (
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
40
41
42
43
44
45
46
|
{% set name = 'pysiaf' %}
{% set version = GIT_DESCRIBE_TAG ~ ".dev" ~ GIT_DESCRIBE_NUMBER ~ "+" ~ GIT_DESCRIBE_HASH %}
{% if version[0] == 'v' %}
{% set version = version[1:] %}
{% endif %}
{% set number = '0' %}
about:
home: https://github.com/spacetelescope/{{ name }}
license: BSD
summary:
Handling of Science Instrument Aperture Files (SIAF) for space telescopes
source:
git_url: https://github.com/spacetelescope/{{ name }}.git
package:
name: {{ name }}
version: {{ version }}
build:
number: {{ number }}
requirements:
build:
- astropy >=1.2
- numpy >=1.9
- matplotlib >=1.4.3
- lxml >=3.6.4
- scipy >=0.17
- openpyxl >=2.4
- python {{ python }}
- setuptools
run:
- astropy >=1.2
- numpy >=1.9
- matplotlib >=1.4.3
- lxml >=3.6.4
- scipy >=0.17
- openpyxl >=2.4
- python {{ python }}
test:
imports:
- pysiaf
|