blob: 3eccf0625c44c42c4cde8353a3cdaa80034e81b0 (
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 = "0.8.2" %}
package:
  name: glueviz
  version: {{version}}
source:
  fn: glueviz-{{version}}.tar.gz
  url: https://pypi.io/packages/source/g/glueviz/glueviz-{{version}}.tar.gz
  md5: 92dd7de2621a6ab6861cc9b689e86c3e
build:
  number: 0
  script: python setup.py install --single-version-externally-managed --record record.txt
  osx_is_app: True
requirements:
  build:
    - python
  run:
    - python
    - numpy
    - scipy
    - matplotlib
    - astropy
    - ipython
    - ipykernel
    - h5py
    - pandas
    - pyqt
    - qtconsole
    - xlrd
    - scikit-image
    - python.app  # [osx]
test:
  requires:
    - mock
    - pytest
  imports:
    - glue
  commands:
    - glue --version
    - glue-deps list
app:
  entry: glue
  icon: logo.png
  summary: Multi-dimensional linked data exploration
  type: desk
about:
  home: http://glueviz.org
  license: BSD 3-Clause
  summary: Multi-dimensional linked data exploration
extra:
  recipe-maintainers:
    - astrofrog
 |