diff options
Diffstat (limited to 'astroquery')
-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 |