summaryrefslogtreecommitdiff
path: root/mpl-scatter-density/meta.yaml
diff options
context:
space:
mode:
authorDan D'Avella <ddavella@stsci.edu>2018-03-07 00:57:54 -0500
committerJoseph Hunkeler <jhunkeler@users.noreply.github.com>2018-03-07 00:57:54 -0500
commit92677c089d1a5b0ae5b44feb8f5c19a96d27980c (patch)
tree8a1d2f5239be1b15647505d8947278823439d62c /mpl-scatter-density/meta.yaml
parent20bdd76a3cbcef18c0f947a67a3760d07cfc8b6a (diff)
downloadastroconda-dev-92677c089d1a5b0ae5b44feb8f5c19a96d27980c.tar.gz
Build glue-core from latest source (#114)
* Fix glue-core recipe to build from latest source * Fix glue-core dependency in cubeviz * Add recipe for mpl-scatter-density (dependency of glue-core) * Add recipe for fast-histogram (dependency of mpl-scatter-density) * AstroCondaify fast-histogram * AstroCondaify mpl-scatter-density * AstroCondaify glue-core * glue-core: add mpl-scatter-density
Diffstat (limited to 'mpl-scatter-density/meta.yaml')
-rw-r--r--mpl-scatter-density/meta.yaml47
1 files changed, 47 insertions, 0 deletions
diff --git a/mpl-scatter-density/meta.yaml b/mpl-scatter-density/meta.yaml
new file mode 100644
index 0000000..0ca7ad7
--- /dev/null
+++ b/mpl-scatter-density/meta.yaml
@@ -0,0 +1,47 @@
+{% set name = "mpl-scatter-density" %}
+{% set version = "0.3" %}
+{% set number = "0" %}
+{% set sha256 = "98953172aea8c652570dcc6238bccd20afb69e6ae9594d4679c08e810b658651" %}
+
+about:
+ home: http://github.com/astrofrog/mpl-scatter-density
+ license: BSD
+ license_family: BSD
+ license_file: LICENSE
+ summary: Matplotlib helpers to make density scatter plots
+ description: Matplotlib helpers to make density scatter plots
+ doc_url: http://github.com/astrofrog/mpl-scatter-density
+ dev_url: http://github.com/astrofrog/mpl-scatter-density
+
+package:
+ name: {{ name|lower }}
+ version: {{ version }}
+
+build:
+ number: {{ number }}
+
+requirements:
+ build:
+ - fast-histogram >=0.3
+ - matplotlib >=1.5
+ - numpy {{ numpy }}
+ - python {{ python }}
+ - setuptools
+ run:
+ - fast-histogram >=0.3
+ - matplotlib >=1.5
+ - numpy
+ - python
+
+source:
+ fn: {{ name }}-{{ version }}.tar.gz
+ url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
+ sha256: {{ sha256 }}
+
+test:
+ imports:
+ - mpl_scatter_density
+
+extra:
+ recipe-maintainers:
+ - astrofrog-conda-forge