From 8b9c6b59e2bb44062de99efc4f29679e19519206 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 20 Sep 2017 22:44:51 -0400 Subject: Initial commit; astroquery (#59) * Initial commit; astroquery * Only install secretstorage on linux --- astroquery/meta.yaml | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 astroquery/meta.yaml (limited to 'astroquery/meta.yaml') diff --git a/astroquery/meta.yaml b/astroquery/meta.yaml new file mode 100644 index 0000000..9966388 --- /dev/null +++ b/astroquery/meta.yaml @@ -0,0 +1,47 @@ +{% set name = 'astroquery' %} +{% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0") + +".dev" + +environ.get("GIT_DESCRIBE_NUMBER", "0") %} +{% if version[0] == 'v' %} +{% set version = version[1:] %} +{% endif %} +{% set number = '0' %} + +about: + home: https://github.com/astropy/{{ name }} + license: BSD + summary: Astroquery is a set of tools for querying astronomical web forms and databases. + +package: + name: {{ name }} + version: {{ version }} + +source: + git_url: https://github.com/astropy/{{ name }} + +build: + number: {{ number }} + +requirements: + build: + - astropy + - requests + - keyring + - beautifulsoup4 + - html5lib + - secretstorage [linux] + - setuptools + - python + + run: + - astropy + - requests + - keyring + - beautifulsoup4 + - html5lib + - secretstorage [linux] + - python + +test: + imports: + - astroquery.simbad -- cgit