From e2934566e1bb27f7402143c856f59db457bd2c05 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 13 Jul 2017 13:07:26 -0400 Subject: Initial commit of jwst_footprints (#239) --- jwst_footprints/bld.bat | 1 + jwst_footprints/build.sh | 1 + jwst_footprints/meta.yaml | 45 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 jwst_footprints/bld.bat create mode 100644 jwst_footprints/build.sh create mode 100644 jwst_footprints/meta.yaml (limited to 'jwst_footprints') 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..b9abf56 --- /dev/null +++ b/jwst_footprints/meta.yaml @@ -0,0 +1,45 @@ +{% set name = 'jwst_footprints' %} +{% set version = '1.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 -- cgit From a5f45e65b63ed9881eb1e41077a3a6edb82c87f9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 16 Aug 2017 22:55:52 -0400 Subject: [jwst_footprints] 1.2.0 -> 2.2.0 (#255) --- jwst_footprints/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jwst_footprints') diff --git a/jwst_footprints/meta.yaml b/jwst_footprints/meta.yaml index b9abf56..09ae18f 100644 --- a/jwst_footprints/meta.yaml +++ b/jwst_footprints/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'jwst_footprints' %} -{% set version = '1.2.0' %} +{% set version = '2.2.0' %} {% set number = '0' %} about: -- cgit