blob: 29e2b67fc9ad12dbfcb93c18f36e4f39ca8268b5 (
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
62
|
{% set name = 'glueviz' %}
{% set version = '0.8.2' %}
{% set number = '1' %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/g/glueviz/{{ name }}-{{ version }}.tar.gz
md5: 92dd7de2621a6ab6861cc9b689e86c3e
build:
number: {{ number }}
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
|