diff options
| author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-11-29 20:40:40 -0500 | 
|---|---|---|
| committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-12-13 16:04:15 -0500 | 
| commit | 4fe08aedce73669d3225c8bbe8dbecc108d91133 (patch) | |
| tree | 40c7605c472951fa0e3ef7aa910c7b8a4606c45d /astroimtools | |
| parent | d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c (diff) | |
| download | astroconda-contrib-4fe08aedce73669d3225c8bbe8dbecc108d91133.tar.gz | |
Improve recipe uniformity
Diffstat (limited to 'astroimtools')
| -rw-r--r-- | astroimtools/meta.yaml | 25 | 
1 files changed, 17 insertions, 8 deletions
diff --git a/astroimtools/meta.yaml b/astroimtools/meta.yaml index 032fd48..6abd056 100644 --- a/astroimtools/meta.yaml +++ b/astroimtools/meta.yaml @@ -1,13 +1,20 @@ +{% set name = 'astroimtools' %} +{% set version = '0.1.1' %} +{% set tag = 'v' + version %} +{% set number = '0' %} +  about: -    home: https://github.com/spacetelescope/astroimtools +    home: https://github.com/spacetelescope/{{name}}      license: BSD -    readme: README.rst -    summary: astroimtools +    summary: Astronomical Image Tools +  build: -    number: '0' +    number: {{number}} +  package: -    name: astroimtools -    version: '0.1.1' +    name: {{name}} +    version: {{version}} +  requirements:      build:      - astropy >=1.1 @@ -22,9 +29,11 @@ requirements:      - matplotlib      - numpy      - python x.x +  source: -    git_tag: v0.1.1 -    git_url: https://github.com/spacetelescope/astroimtools +    git_tag: {{tag}} +    git_url: https://github.com/spacetelescope/{{name}} +  test:      commands:      - imarith --help  | 
