diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-06-13 10:16:15 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-06-13 10:16:15 -0400 |
commit | 874227377a664b3659fe1ecb11dca14bd71a874e (patch) | |
tree | e2e15d7874b8e56c4104d827b9a4adbfc8b405a5 | |
parent | 67fbd01991843d4924a38a6d4e1c53b60adb360b (diff) | |
download | astroconda-dev-874227377a664b3659fe1ecb11dca14bd71a874e.tar.gz |
Initial commit of [new] JWST pipeline
-rw-r--r-- | jwst/bld.bat | 2 | ||||
-rw-r--r-- | jwst/build.sh | 1 | ||||
-rw-r--r-- | jwst/meta.yaml | 56 |
3 files changed, 59 insertions, 0 deletions
diff --git a/jwst/bld.bat b/jwst/bld.bat new file mode 100644 index 0000000..54e79aa --- /dev/null +++ b/jwst/bld.bat @@ -0,0 +1,2 @@ +echo "Unsupported" +exit 1 diff --git a/jwst/build.sh b/jwst/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/jwst/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/jwst/meta.yaml b/jwst/meta.yaml new file mode 100644 index 0000000..78aa119 --- /dev/null +++ b/jwst/meta.yaml @@ -0,0 +1,56 @@ +{% set name = 'jwst' %} +{% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0") + +".dev" + +environ.get("GIT_DESCRIBE_NUMBER", "0") %} +{% set number = '0' %} + +about: + home: https://github.com/stsci-jwst/jwst.git + license: BSD + summary: JWST Pipeline code +build: + number: {{ number }} + preserve_egg_dir: 'True' +package: + name: {{ name }} + version: {{ version }} +requirements: + build: + - asdf + - astropy + - crds + - dask + - drizzle + - drizzlepac + - gwcs + - jsonschema + - matplotlib + - nose + - photutils + - scipy + - six + - setuptools + - numpy x.x + - python x.x + run: + - asdf + - astropy + - crds + - dask + - drizzle + - drizzlepac + - gwcs + - jsonschema + - matplotlib + - nose + - photutils + - scipy + - six + - numpy x.x + - python x.x +source: + git_url: https://github.com/stsci-jwst/jwst.git +test: + imports: + - jwst + |