diff options
author | Joseph Long <jdl@fastmail.com> | 2017-01-17 15:37:33 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-01-17 15:37:33 -0500 |
commit | 814d35ea983541225acdb9ed77fdb737bc3a7f39 (patch) | |
tree | 08cb30ab5dc9eba19e850978d98d6167a603f3ea /jwst_coronagraph_visibility | |
parent | 1737eab5bd07ea07e24feadc2f3d0f585f46767f (diff) | |
download | astroconda-contrib-814d35ea983541225acdb9ed77fdb737bc3a7f39.tar.gz |
Update jwxml to 0.2.0, add jwst_coronagraph_visibility (#151)
* Update jwxml to 0.2.0, add jwst_coronagraph_visibility
* Set jwxml build # to 0
Diffstat (limited to 'jwst_coronagraph_visibility')
-rw-r--r-- | jwst_coronagraph_visibility/bld.bat | 1 | ||||
-rw-r--r-- | jwst_coronagraph_visibility/build.sh | 1 | ||||
-rw-r--r-- | jwst_coronagraph_visibility/meta.yaml | 45 |
3 files changed, 47 insertions, 0 deletions
diff --git a/jwst_coronagraph_visibility/bld.bat b/jwst_coronagraph_visibility/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/jwst_coronagraph_visibility/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/jwst_coronagraph_visibility/build.sh b/jwst_coronagraph_visibility/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/jwst_coronagraph_visibility/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/jwst_coronagraph_visibility/meta.yaml b/jwst_coronagraph_visibility/meta.yaml new file mode 100644 index 0000000..c64c9ad --- /dev/null +++ b/jwst_coronagraph_visibility/meta.yaml @@ -0,0 +1,45 @@ +{% set name = 'jwst_coronagraph_visibility' %} +{% set version = '0.1.0' %} +{% set number = '0' %} + +about: + # Package homepage + home: https://github.com/spacetelescope/jwst_coronagraph_visibility + # Package license + license: BSD-3-Clause + # A brief description + summary: Visualize approximate pointing constraints for JWST coronagraphs. + +package: + # Define these values above + name: {{ name }} + version: {{ version }} + +build: + # Define this value above + number: {{ number }} + +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git + +requirements: + build: + - setuptools + - python x.x + - numpy + - matplotlib + - tk + - requests + - jwxml >=0.2.0 + run: + - python x.x + - numpy + - matplotlib + - requests + - tk + - jwxml >=0.2.0 + +test: + imports: + - jwst_coronagraph_visibility.skyvec2ins |