diff options
author | Thomas Robitaille <thomas.robitaille@gmail.com> | 2016-11-07 15:04:28 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-11-07 15:04:28 -0500 |
commit | debb13fca0332288acd4fe9db638072601b639d1 (patch) | |
tree | 3904e228a69cfe832166e975c6f92f8e782b118c | |
parent | 96a5960002477712606e22dd98cd9c8acf23a64e (diff) | |
download | astroconda-contrib-debb13fca0332288acd4fe9db638072601b639d1.tar.gz |
Add recipe for astroquery (#93)
-rw-r--r-- | astroquery/bld.bat | 1 | ||||
-rw-r--r-- | astroquery/build.sh | 1 | ||||
-rw-r--r-- | astroquery/meta.yaml | 41 |
3 files changed, 43 insertions, 0 deletions
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 |