summaryrefslogtreecommitdiff
path: root/glueviz
diff options
context:
space:
mode:
authorThomas Robitaille <thomas.robitaille@gmail.com>2016-07-18 15:24:58 -0400
committerJoseph Hunkeler <jhunkeler@users.noreply.github.com>2016-07-18 15:24:58 -0400
commitdcc4716b62fbd38e6aabeb4ba5741558149e70f8 (patch)
tree4f900ff645ca215c02efb9ced4a5532365121f41 /glueviz
parent82e9c09b5e73ff0a809ef05e0cdf7636e456e477 (diff)
downloadastroconda-contrib-dcc4716b62fbd38e6aabeb4ba5741558149e70f8.tar.gz
Added recipes for glueviz and glue-vispy-viewers (#41)
Diffstat (limited to 'glueviz')
-rw-r--r--glueviz/logo.pngbin0 -> 10229 bytes
-rw-r--r--glueviz/meta.yaml61
2 files changed, 61 insertions, 0 deletions
diff --git a/glueviz/logo.png b/glueviz/logo.png
new file mode 100644
index 0000000..b2e7206
--- /dev/null
+++ b/glueviz/logo.png
Binary files differ
diff --git a/glueviz/meta.yaml b/glueviz/meta.yaml
new file mode 100644
index 0000000..3eccf06
--- /dev/null
+++ b/glueviz/meta.yaml
@@ -0,0 +1,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