diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-05-06 18:38:36 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-05-06 18:38:36 -0400 |
commit | 832a5474a9467768a9227b24fedbd2d8004c797d (patch) | |
tree | 99530a58874b08f9752859497b26ec96b39c70e5 | |
parent | 10a4c772af0c9a3db68740018659197f4fe39d9c (diff) | |
download | astroconda-dev-832a5474a9467768a9227b24fedbd2d8004c797d.tar.gz |
Initial commit of drizzle recipe
-rw-r--r-- | drizzle/bld.bat | 1 | ||||
-rw-r--r-- | drizzle/build.sh | 1 | ||||
-rw-r--r-- | drizzle/meta.yaml | 39 |
3 files changed, 41 insertions, 0 deletions
diff --git a/drizzle/bld.bat b/drizzle/bld.bat new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/drizzle/bld.bat @@ -0,0 +1 @@ +python setup.py install diff --git a/drizzle/build.sh b/drizzle/build.sh new file mode 100644 index 0000000..762d43b --- /dev/null +++ b/drizzle/build.sh @@ -0,0 +1 @@ +python setup.py install diff --git a/drizzle/meta.yaml b/drizzle/meta.yaml new file mode 100644 index 0000000..e1002f1 --- /dev/null +++ b/drizzle/meta.yaml @@ -0,0 +1,39 @@ +{% set name = 'drizzle' %} +{% 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/spacetelescope/{{ name }} + license: BSD + summary: A package for combining dithered images into a single image + +package: + name: {{ name }} + version: {{ version }} + +build: + number: {{ number }} + +source: + git_url: https://github.com/spacetelescope/{{ name }}.git + +requirements: + build: + - astropy >=1.1 + - setuptools + - numpy x.x + - python x.x + + run: + - astropy >=1.1 + - numpy x.x + - python x.x + +test: + imports: + - drizzle + - drizzle.drizzle + - drizzle.cdrizzle + |