diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-30 19:07:50 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-30 19:07:50 -0400 |
commit | c0897cbbfdf083fda8fe006bcf3d9596f4d7903a (patch) | |
tree | 06261022b9b0b849cf0f837a81f238b6174601a9 | |
parent | 9377b7a9d941050e9843fbd02e087e2b45f28ad6 (diff) | |
download | astroconda-contrib-c0897cbbfdf083fda8fe006bcf3d9596f4d7903a.tar.gz |
Add missing opuscoords recipe
-rw-r--r-- | opuscoords/bld.bat | 4 | ||||
-rw-r--r-- | opuscoords/build.sh | 2 | ||||
-rw-r--r-- | opuscoords/meta.yaml | 29 |
3 files changed, 35 insertions, 0 deletions
diff --git a/opuscoords/bld.bat b/opuscoords/bld.bat new file mode 100644 index 0000000..5d42b68 --- /dev/null +++ b/opuscoords/bld.bat @@ -0,0 +1,4 @@ + + +python setup.py install +if errorlevel 1 exit 1
\ No newline at end of file diff --git a/opuscoords/build.sh b/opuscoords/build.sh new file mode 100644 index 0000000..535529d --- /dev/null +++ b/opuscoords/build.sh @@ -0,0 +1,2 @@ + +python setup.py install || exit 1 diff --git a/opuscoords/meta.yaml b/opuscoords/meta.yaml new file mode 100644 index 0000000..4d6deba --- /dev/null +++ b/opuscoords/meta.yaml @@ -0,0 +1,29 @@ +{% set name = 'opuscoords' %} +{% set version = '1.0.2' %} +{% set number = '0' %} + +about: + home: https://github.com/spacetelescope/opuscoords + license: BSD + summary: opuscoords +build: + number: {{ number }} +package: + name: {{ name }} + version: {{ version }} +requirements: + build: + - d2to1 + - stsci.distutils + - setuptools + - numpy x.x + - python x.x + run: + - numpy x.x + - python x.x +source: + git_tag: {{ version }} + git_url: https://github.com/spacetelescope/opuscoords.git +test: + imports: + - opuscoords |