diff options
author | Johannes Sahlmann <jsahlmann@stsci.edu> | 2019-04-19 13:14:08 -0400 |
---|---|---|
committer | obviousrebel <jalexander@stsci.edu> | 2019-05-13 11:22:58 -0400 |
commit | 54959acaf07584597b7a6c14742c97c0382afeb1 (patch) | |
tree | 195c761f4d21b57597425c79e6c40c5a4e007a56 /jwst-visit-parser | |
parent | 8a8531cae09684d307a29c653ed0f1a461842d58 (diff) | |
download | astroconda-contrib-54959acaf07584597b7a6c14742c97c0382afeb1.tar.gz |
Add recipe for jwst-visit-parser
Diffstat (limited to 'jwst-visit-parser')
-rw-r--r-- | jwst-visit-parser/bld.bat | 2 | ||||
-rw-r--r-- | jwst-visit-parser/build.sh | 2 | ||||
-rw-r--r-- | jwst-visit-parser/meta.yaml | 40 |
3 files changed, 44 insertions, 0 deletions
diff --git a/jwst-visit-parser/bld.bat b/jwst-visit-parser/bld.bat new file mode 100644 index 0000000..760380e --- /dev/null +++ b/jwst-visit-parser/bld.bat @@ -0,0 +1,2 @@ + +%PYTHON% setup.py install diff --git a/jwst-visit-parser/build.sh b/jwst-visit-parser/build.sh new file mode 100644 index 0000000..296d744 --- /dev/null +++ b/jwst-visit-parser/build.sh @@ -0,0 +1,2 @@ + +$PYTHON setup.py install --single-version-externally-managed --record record.txt
\ No newline at end of file diff --git a/jwst-visit-parser/meta.yaml b/jwst-visit-parser/meta.yaml new file mode 100644 index 0000000..656a427 --- /dev/null +++ b/jwst-visit-parser/meta.yaml @@ -0,0 +1,40 @@ +{% set name = 'jwst-visit-parser' %} +{% set version = '0.1.2' %} +{% set tag = version %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/{{ name }} + license: BSD + summary: + Python tools for parsing JWST visit (.vst) files + +source: + git_tag: {{ tag }} + git_url: https://github.com/spacetelescope/{{ name }}.git + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +requirements: + build: + - setuptools + - numpy {{ numpy }} + - python {{ python }} + - pytest + - astropy + + run: + - setuptools + - numpy {{ numpy }} + - python {{ python }} + - pytest + - astropy + +test: + imports: + - visitparser |