diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-05-16 10:36:03 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-05-16 10:36:03 -0400 |
commit | 2b9286b24bfb26e8df05a5b255a180639cefa87a (patch) | |
tree | 1f996d2815f9e1188ec7e70e01777e540414fcee | |
parent | af1227275064692cb5a5982bdd3d8fed69821bb3 (diff) | |
parent | 54994f40d71ec39f6243e976f4bec588ae0911d6 (diff) | |
download | astroconda-contrib-2b9286b24bfb26e8df05a5b255a180639cefa87a.tar.gz |
Merge pull request #3 from jhunkeler/contrib-pydrizzle
Initial commit of pydrizzle
-rw-r--r-- | pydrizzle/bld.bat | 5 | ||||
-rw-r--r-- | pydrizzle/build.sh | 2 | ||||
-rw-r--r-- | pydrizzle/meta.yaml | 30 |
3 files changed, 37 insertions, 0 deletions
diff --git a/pydrizzle/bld.bat b/pydrizzle/bld.bat new file mode 100644 index 0000000..d733f00 --- /dev/null +++ b/pydrizzle/bld.bat @@ -0,0 +1,5 @@ +pip install --no-deps --upgrade --force d2to1 +if errorlevel 1 exit 1 + +python setup.py install || exit 1 +if errorlevel 1 exit 1 diff --git a/pydrizzle/build.sh b/pydrizzle/build.sh new file mode 100644 index 0000000..f5ed7a2 --- /dev/null +++ b/pydrizzle/build.sh @@ -0,0 +1,2 @@ +pip install --no-deps --upgrade --force d2to1 || exit 1 +python setup.py install || exit 1 diff --git a/pydrizzle/meta.yaml b/pydrizzle/meta.yaml new file mode 100644 index 0000000..d53237f --- /dev/null +++ b/pydrizzle/meta.yaml @@ -0,0 +1,30 @@ +about: + home: https://github.com/spacetelescope/pydrizzle + license: BSD + summary: Geometrically correct and combine images using Drizzle +build: + number: '0' +package: + name: pydrizzle + version: 6.4.4 +requirements: + build: + - d2to1 + - astropy >=1.1 + - setuptools + - stsci.distutils + - stsci.tools + - numpy x.x + - python x.x + run: + - astropy >=1.1 + - stsci.tools + - wxpython [py27] + - numpy x.x + - python x.x +source: + git_tag: 6.4.4 + git_url: https://github.com/spacetelescope/pydrizzle +test: + imports: + - pydrizzle |