From debb13fca0332288acd4fe9db638072601b639d1 Mon Sep 17 00:00:00 2001 From: Thomas Robitaille Date: Mon, 7 Nov 2016 15:04:28 -0500 Subject: Add recipe for astroquery (#93) --- astroquery/bld.bat | 1 + astroquery/build.sh | 1 + astroquery/meta.yaml | 41 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 astroquery/bld.bat create mode 100644 astroquery/build.sh create mode 100644 astroquery/meta.yaml diff --git a/astroquery/bld.bat b/astroquery/bld.bat new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/astroquery/bld.bat @@ -0,0 +1 @@ +python setup.py install diff --git a/astroquery/build.sh b/astroquery/build.sh new file mode 100644 index 0000000..141155c --- /dev/null +++ b/astroquery/build.sh @@ -0,0 +1 @@ +python setup.py install --offline --no-git diff --git a/astroquery/meta.yaml b/astroquery/meta.yaml new file mode 100644 index 0000000..6aed835 --- /dev/null +++ b/astroquery/meta.yaml @@ -0,0 +1,41 @@ +{% set name = 'astroquery' %} +{% set version = '0.3.3' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ name }} + license: BSD + summary: Astroquery is a set of tools for querying astronomical web forms and databases. + +package: + name: {{ name }} + version: {{ version }} + +source: + fn: astroquery-{{version}}.tar.gz + url: https://pypi.io/packages/source/a/astroquery/astroquery-{{version}}.tar.gz + md5: 1be83c630fcb462a711eb9c2eda0fbea + +build: + number: {{ number }} + +requirements: + build: + - astropy + - requests + - keyring + - beautifulsoup4 + - html5lib + - setuptools + - python x.x + run: + - astropy + - requests + - keyring + - beautifulsoup4 + - html5lib + - python x.x + +test: + imports: + - astroquery.simbad -- cgit