diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2017-11-07 10:35:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-07 10:35:43 -0500 |
commit | 509e9f4d9b7282d90f9ac8b6b515c36a52fc118f (patch) | |
tree | 9a72ce20ca33b31bfddc0a14ac8317a6b7c62cb7 /jwst_footprints | |
parent | 05b6ceb506b9222ef3fcf1acdf5f7dbc693c6e22 (diff) | |
parent | ae9265d4e2407579822310cc3cf68a150ea3bed7 (diff) | |
download | astroconda-contrib-509e9f4d9b7282d90f9ac8b6b515c36a52fc118f.tar.gz |
Merge branch 'master' into imexam0.8.0
Diffstat (limited to 'jwst_footprints')
-rw-r--r-- | jwst_footprints/bld.bat | 1 | ||||
-rw-r--r-- | jwst_footprints/build.sh | 1 | ||||
-rw-r--r-- | jwst_footprints/meta.yaml | 45 |
3 files changed, 47 insertions, 0 deletions
diff --git a/jwst_footprints/bld.bat b/jwst_footprints/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/jwst_footprints/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/jwst_footprints/build.sh b/jwst_footprints/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/jwst_footprints/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/jwst_footprints/meta.yaml b/jwst_footprints/meta.yaml new file mode 100644 index 0000000..09ae18f --- /dev/null +++ b/jwst_footprints/meta.yaml @@ -0,0 +1,45 @@ +{% set name = 'jwst_footprints' %} +{% set version = '2.2.0' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/jwst_coronagraph_visibility + license: BSD-3-Clause + summary: Visualize approximate pointing constraints for JWST coronagraphs. + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/{{ name }}.git + +requirements: + build: + - astropy >=1.3 + - matplotlib + - numpy + - pillow + - pyds9 + - scipy + - tk + - setuptools + - python x.x + + run: + - astropy >=1.3 + - matplotlib + - numpy + - scipy + - pillow + - pyds9 + - tk + - python x.x + +test: + imports: + - jwst_footprints |