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 /pyds9 | |
| parent | d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c (diff) | |
| download | astroconda-contrib-4fe08aedce73669d3225c8bbe8dbecc108d91133.tar.gz | |
Improve recipe uniformity
Diffstat (limited to 'pyds9')
| -rw-r--r-- | pyds9/meta.yaml | 21 | 
1 files changed, 15 insertions, 6 deletions
diff --git a/pyds9/meta.yaml b/pyds9/meta.yaml index aa30794..d7e2d94 100644 --- a/pyds9/meta.yaml +++ b/pyds9/meta.yaml @@ -1,15 +1,22 @@ +{% set name = 'pyds9' %} +{% set version = '1.9.0.dev' %} +{% set number = '0' %} +  about: -    home: https://github.com/ericmandel/pyds9 +    home: https://github.com/ericmandel/{{name}}      license: GPL      summary: |          (Supervised master build)          Python connection to SAOimage DS9 via XPA +  build: -    number: '0' -    string: {{ GIT_BUILD_STR }} +    number: {{number}} +    string: {{GIT_BUILD_STR}} +  package: -    name: pyds9 -    version: 1.9.0.dev +    name: {{name}} +    version: {{version}} +  requirements:      build:      - astropy @@ -25,9 +32,11 @@ requirements:      - six      - numpy      - python x.x +  source:      git_rev: 3761d7ac151f8c8729d0fb6cdba017cadf278283 -    git_url: https://github.com/ericmandel/pyds9 +    git_url: https://github.com/ericmandel/{{name}}.git +  test:      imports:      - pyds9  | 
