blob: 80db93a75b066238a070f34fb8e4b5cb84e2b0e0 (
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
49
50
51
52
53
54
55
|
{% set name = 'hlapipeline' %}
{% 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/hlapipeline.git
license: BSD
summary: Software related to the migration of the HLA to the pipeline
build:
number: {{ number }}
package:
name: {{ name }}
version: {{ version }}
requirements:
build:
- click>=6.0
- photutils
- astroquery
- sphinx_rtd_theme
- stsci_rtd_theme
- stwcs
- setuptools
- pytest-runner
- numpy {{ numpy }}
- python {{ python }}
run:
- click>=6.0
- astropy
- scipy
- matplotlib
- photutils
- astroquery
- scipy
- sphinx
- sphinx_rtd_theme
- stsci_rtd_theme
- stsci.tools
- stwcs
- setuptools
- numpy {{ numpy }}
- python {{ python }}
source:
git_url: https://github.com/spacetelescope/{{ name }}.git
test:
imports:
- hlapipeline
|