diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2017-05-26 13:05:53 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-05-26 13:05:53 -0400 | 
| commit | 61952727d0403c32a5179acbb71b76717d29cf20 (patch) | |
| tree | f3fe34cef20c4d0604ebca72e0aae52ff89cb2f1 | |
| parent | 8a2b74e232f9d98e8e9c3aa021e7be5f6bbb7d9e (diff) | |
| download | astroconda-dev-61952727d0403c32a5179acbb71b76717d29cf20.tar.gz | |
Add optional dependencies (#28)
| -rw-r--r-- | crds/build.sh | 4 | ||||
| -rw-r--r-- | crds/meta.yaml | 21 | 
2 files changed, 14 insertions, 11 deletions
| diff --git a/crds/build.sh b/crds/build.sh index 10954df..762d43b 100644 --- a/crds/build.sh +++ b/crds/build.sh @@ -1,3 +1 @@ - - -python setup.py install || exit 1
\ No newline at end of file +python setup.py install diff --git a/crds/meta.yaml b/crds/meta.yaml index ef52cb4..aafe25b 100644 --- a/crds/meta.yaml +++ b/crds/meta.yaml @@ -2,12 +2,14 @@  {% set version = environ.get("GIT_DESCRIBE_TAG", "0.0.0")      +".dev"      +environ.get("GIT_DESCRIBE_NUMBER", "0") %} -{% set number = '1' %} +{% set number = '2' %}  about:      home: http://www.stsci.edu/hst/observatory/crds/      license: AURA -    summary: crds +    summary: | +        CRDS assigns calibration references to data using formal rules +        represented in simple text files  build:      number: {{ number }} @@ -19,20 +21,23 @@ package:  requirements:      build: -    - d2to1 -    - stsci.distutils -    - astropy +    - astropy >=1.1 +    - cfitsio +    - numpy      - requests      - lxml +    - parsley      - setuptools -    - numpy      - python x.x      run: -    - astropy +    - astropy >=1.1 +    - cfitsio +    - numpy      - requests      - lxml -    - numpy +    - fitsverify +    - parsley      - python x.x  source: | 
