diff options
| author | Justin Ely <ely@stsci.edu> | 2016-08-03 18:11:48 -0400 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2016-08-03 18:11:48 -0400 | 
| commit | c54ac2413015aa3f4f4b72df3e7f5a05f0313ff1 (patch) | |
| tree | 0a2b958fa673d3fface16cee6a1d672d6c49a53d | |
| parent | a48290ebfa6759559e684153292511ba2b7344d7 (diff) | |
| download | astroconda-contrib-c54ac2413015aa3f4f4b72df3e7f5a05f0313ff1.tar.gz | |
set cube-tools to 0.0.1 at the DA-2 release date (#49)
| -rw-r--r-- | cube-tools/meta.yaml | 16 | 
1 files changed, 11 insertions, 5 deletions
| diff --git a/cube-tools/meta.yaml b/cube-tools/meta.yaml index 05bb740..92ed5b9 100644 --- a/cube-tools/meta.yaml +++ b/cube-tools/meta.yaml @@ -1,12 +1,17 @@ + +{% set name = 'cube-tools' %} +{% set version = '0.0.1' %} +{% set number = '0' %} +  about: -    home: https://github.com/spacetelescope/cube-tools +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    summary: cube-tools +    summary: Data analysis package for cubes.  build: -    number: '{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}' +    number: {{ number }}  package:      name: cube-tools -    version: '{{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}' +    version: {{ version }}  requirements:      build:      - glueviz @@ -22,7 +27,8 @@ requirements:      - numpy x.x      - python x.x  source: -    git_url: https://github.com/spacetelescope/cube-tools +    git_tag: {{ version }} +    git_url: https://github.com/spacetelescope/{{ name }}.git  test:      imports:      - cube_tools | 
