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 /photutils/meta.yaml | |
parent | d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c (diff) | |
download | astroconda-contrib-4fe08aedce73669d3225c8bbe8dbecc108d91133.tar.gz |
Improve recipe uniformity
Diffstat (limited to 'photutils/meta.yaml')
-rw-r--r-- | photutils/meta.yaml | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/photutils/meta.yaml b/photutils/meta.yaml index b35f4a2..32396bb 100644 --- a/photutils/meta.yaml +++ b/photutils/meta.yaml @@ -1,12 +1,20 @@ +{% set name = 'photutils' %} +{% set version = '0.3' %} +{% set tag = 'v' + version %} +{% set number = '1' %} + about: - home: https://github.com/astropy/photutils + home: https://github.com/astropy/{{name}} license: BSD - summary: photutils + summary: An Astropy package for photometry + build: - number: '1' + number: {{number}} + package: - name: photutils - version: 0.3 + name: {{name}} + version: {{version}} + requirements: build: - astropy >=1.1 @@ -26,9 +34,11 @@ requirements: - scipy - setuptools - python x.x + source: - git_tag: v0.3 - git_url: https://github.com/astropy/photutils + git_tag: {{tag}} + git_url: https://github.com/astropy/{{name}}.git + test: imports: - photutils |