diff options
author | Joseph Long <jdl@fastmail.com> | 2016-10-31 14:28:54 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-10-31 14:28:54 -0400 |
commit | 7807b1121eac7be245b93645dae92e3ad76bcdb7 (patch) | |
tree | 33519effcd9b3b060e8c60820d21aad2b8d25ef6 /jwxml | |
parent | b5c8288be739e8f89dcd765f524fa6727769c6c0 (diff) | |
download | astroconda-contrib-7807b1121eac7be245b93645dae92e3ad76bcdb7.tar.gz |
WebbPSF and POPPY v0.5.1 (#83)
* WebbPSF and POPPY v0.5.1
* webbpsf, poppy, jwxml: clean up meta.yaml
* webbpsf: list missing dependencies
Diffstat (limited to 'jwxml')
-rw-r--r-- | jwxml/bld.bat | 3 | ||||
-rw-r--r-- | jwxml/build.sh | 2 | ||||
-rw-r--r-- | jwxml/meta.yaml | 24 |
3 files changed, 29 insertions, 0 deletions
diff --git a/jwxml/bld.bat b/jwxml/bld.bat new file mode 100644 index 0000000..8d766c9 --- /dev/null +++ b/jwxml/bld.bat @@ -0,0 +1,3 @@ + +python setup.py install +if errorlevel 1 exit 1 diff --git a/jwxml/build.sh b/jwxml/build.sh new file mode 100644 index 0000000..535529d --- /dev/null +++ b/jwxml/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 diff --git a/jwxml/meta.yaml b/jwxml/meta.yaml new file mode 100644 index 0000000..744edd2 --- /dev/null +++ b/jwxml/meta.yaml @@ -0,0 +1,24 @@ +about: + home: https://github.com/mperrin/jwxml + license: BSD + summary: jwxml +build: + number: '0' +package: + name: jwxml + version: 0.1.0 +requirements: + build: + - numpy x.x + - matplotlib + - python x.x + run: + - numpy x.x + - matplotlib + - python x.x +source: + git_tag: v0.1.0 + git_url: https://github.com/mperrin/jwxml +test: + commands: + - python -c 'from jwxml.siaf import SIAF; SIAF(instr="NIRCam")' |