diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-03-27 10:03:15 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-27 10:03:15 -0400 | 
| commit | d5a58303c9b3d1dea34fd6db22daaa19063faf5f (patch) | |
| tree | adc6f0ae61761b8cad478d2ae316813b2a4b4d77 /ccdproc | |
| parent | 50ad834546c18cb24b1c85f7ece709116e264f1c (diff) | |
| download | astroconda-contrib-d5a58303c9b3d1dea34fd6db22daaa19063faf5f.tar.gz | |
Initial commits of ccdproc, reproject, astropy-healpix, astroscrappy (#330)
Diffstat (limited to 'ccdproc')
| -rw-r--r-- | ccdproc/bld.bat | 1 | ||||
| -rw-r--r-- | ccdproc/build.sh | 1 | ||||
| -rw-r--r-- | ccdproc/meta.yaml | 49 | 
3 files changed, 51 insertions, 0 deletions
| diff --git a/ccdproc/bld.bat b/ccdproc/bld.bat new file mode 100644 index 0000000..39b5e1f --- /dev/null +++ b/ccdproc/bld.bat @@ -0,0 +1 @@ +%PYTHON% setup.py install diff --git a/ccdproc/build.sh b/ccdproc/build.sh new file mode 100644 index 0000000..5a5aeeb --- /dev/null +++ b/ccdproc/build.sh @@ -0,0 +1 @@ +$PYTHON setup.py install diff --git a/ccdproc/meta.yaml b/ccdproc/meta.yaml new file mode 100644 index 0000000..f1dfc4b --- /dev/null +++ b/ccdproc/meta.yaml @@ -0,0 +1,49 @@ +{% set name = 'ccdproc' %} +{% set version = '1.3.0' %} +{% set tag = 'v' + version %} +{% set number = '0' %} + +about: +  home: http://ccdproc.readthedocs.io/ +  license: BSD +  summary: | +    This is a package for reducing optical/IR CCD data that relies on astropy + +build: +  number: {{ number }} + +package: +  name: {{ name }} +  version: {{ version }} + +requirements: +  build: +    - astropy >=1.0 +    - scipy +    - astroscrappy +    - reproject +    - scikit-image +    - setuptools +    - numpy {{ numpy }} +    - python {{ python }} + +  run: +    - astropy >=1.0 +    - scipy +    - astroscrappy +    - reproject +    - scikit-image +    - numpy +    - python + +source: +  git_tag: {{ tag }} +  git_url: https://github.com/astropy/{{ name }}.git + +test: +  imports: +    - ccdproc +    - ccdproc.extern +    - ccdproc.tests +    - ccdproc.utils +    - ccdproc.utils.tests | 
