diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-03-30 16:08:54 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:22 -0400 |
commit | 1a2e77b59cc1480f43316d1ce969b54005797773 (patch) | |
tree | f1e35140c1dc5ecdb885899829cd4ca0c8525240 | |
parent | 8cbeb9e97f402e658cdd0bdb443e7a0c220ff87f (diff) | |
download | astroconda-dev-1a2e77b59cc1480f43316d1ce969b54005797773.tar.gz |
Initial commit of opuscoords
-rw-r--r-- | opuscoords/bld.bat | 4 | ||||
-rw-r--r-- | opuscoords/build.sh | 2 | ||||
-rw-r--r-- | opuscoords/meta.yaml | 24 |
3 files changed, 30 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..be653d2 --- /dev/null +++ b/opuscoords/meta.yaml @@ -0,0 +1,24 @@ +about: + home: https://github.com/spacetelescope/opuscoords + license: BSD + summary: opuscoords +build: + number: '0' +package: + name: opuscoords + version: 1.0.2 +requirements: + build: + - recon + - setuptools + - numpy x.x + - python x.x + run: + - numpy x.x + - python x.x +source: + git_tag: 1.0.2 + git_url: https://github.com/spacetelescope/opuscoords.git +test: + imports: + - opuscoords |