blob: 20b4fb726741300357b1dc1114f5c4df6e207081 (
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
56
57
58
59
60
61
|
{% set version = '3.1.0' %}
{% set tag = 'v' + version %}
{% set number = '0' %}
package:
name: dragons
version: {{ version }}
source:
git_url: git@github.com:GeminiDRSoftware/DRAGONS.git
git_tag: {{ tag }}
build:
number: {{ number }}
binary_relocation: True
about:
home: http://www.gemini.edu/sciops/data-and-results/processing-software
license: BSD
license_file:
- LICENSE
- extern_licenses/
summary: The main DRAGONS package for processing Gemini data
requirements:
build:
- python
- pip
- setuptools
- cython >=0.29
- docutils >=0.15
- sphinx >=1.2.2
- sphinx_rtd_theme >=0.3.0
run:
- python
- asdf >=2.7,!=2.10.0
- astropy >=4.3
- astroquery >=0.4
- astroscrappy >=1.1
- bokeh >=2.3
- bottleneck >=1.2 # opt but needed for astropy.stats performance
- fitsverify >=4.17
- future >=0.17
- gemini_calmgr >=1.1
- gemini_obs_db >=1.0
- gwcs >=0.15
- holoviews >=1.14
- imexam >=0.8 # optional for SQ (used by gemaux & debug plots)
- jinja2 >=3.0
- jsonschema >=3.0
- matplotlib >=3.1
- numpy >=1.17
- psutil >=5.6
- pyerfa >=1.7
# - pytest >=5.2 # also need pytest_dragons etc. for self test
- python-dateutil >=2.5.3
- requests >=2.22
- scipy >=1.3
- sextractor >=2.8.6
- specutils >=1.1,<1.9 # [py<38]
- specutils >=1.1 # [py>=38]
- sqlalchemy >=1.3,<2.0.0a0 # new v2 API breaks calmgr
- tornado >=5.1
run_constrained:
- ds9 >=8.0
|