blob: 27110eba21827364f2d00a1a389b9d2d2ac7df0d (
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
47
48
|
{% set name = 'jwst_coronagraph_visibility' %}
{% set version = '0.4.4' %}
{% set number = '1' %}
{% set org = 'spacetelescope' %}
about:
# Package homepage
home: https://github.com/{{ org }}/{{ name }}
# Package license
license: BSD-3-Clause
# A brief description
summary: Visualize approximate pointing constraints for JWST coronagraphs.
package:
# Define these values above
name: {{ name }}
version: {{ version }}
build:
# Define this value above
number: {{ number }}
source:
fn: {{ version }}.tar.gz
url: https://github.com/{{ org }}/{{ name }}/archive/{{ version }}.tar.gz
requirements:
build:
- setuptools
- numpydoc
- python {{ python }}
- numpy {{ numpy }}
- matplotlib>=3.1.3
- tk
- requests
- pysiaf>=0.7.1
run:
- numpydoc
- python
- numpy
- matplotlib>=3.1.3
- requests
- tk
- pysiaf>=0.7.1
test:
imports:
- jwst_coronagraph_visibility.skyvec2ins
|