diff options
Diffstat (limited to 'stginga')
| -rw-r--r-- | stginga/meta.yaml | 22 | 
1 files changed, 14 insertions, 8 deletions
| diff --git a/stginga/meta.yaml b/stginga/meta.yaml index 4e86c0f..fafa46a 100644 --- a/stginga/meta.yaml +++ b/stginga/meta.yaml @@ -1,28 +1,34 @@ +{% set name = 'stginga' %} +{% set version = '0.1' %} +{% set tag = version %} +{% set number = '0' %} +  about: -    home: https://github.com/spacetelescope/stginga +    home: https://github.com/spacetelescope/{{ name }}      license: BSD -    summary: stginga +    summary: Ginga products specific to STScI data analysis  build: -    number: '{{ environ.get("GIT_DESCRIBE_NUMBER", 0) }}' +    number: {{ number }}  package: -    name: stginga -    version: '{{ environ.get("GIT_DESCRIBE_TAG", "0.0.0") }}' +    name: {{ name }} +    version: {{ version }}  requirements:      build:      - ginga -    - astropy >=1.1 +    - astropy >=1.2      - numpy x.x      - scipy      - setuptools      - python x.x      run:      - ginga -    - astropy >=1.1 +    - astropy >=1.2      - numpy x.x      - scipy      - python x.x  source: -    git_url: https://github.com/spacetelescope/stginga +    git_tag: {{ tag }} +    git_url: https://github.com/spacetelescope/{{ name }}.git  test:      imports:      - stginga | 
