diff options
author | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-02 19:25:09 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunk@stsci.edu> | 2016-04-19 11:17:27 -0400 |
commit | 2ff7bbe733c9837a13a0762bb8a48e04de9e296d (patch) | |
tree | 1b8be48d6c3b71fd7c0d679d3301ab10d20e6d47 /threading2 | |
parent | 4b8dfd8d91499caf0df1182fd010c946f4a01773 (diff) | |
download | astroconda-dev-2ff7bbe733c9837a13a0762bb8a48e04de9e296d.tar.gz |
Incorporate jinja2 usage
Diffstat (limited to 'threading2')
-rw-r--r-- | threading2/meta.yaml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/threading2/meta.yaml b/threading2/meta.yaml index fc855ea..2616ecf 100644 --- a/threading2/meta.yaml +++ b/threading2/meta.yaml @@ -1,12 +1,16 @@ +{% set name = 'threading2' %} +{% set version = '0.2.1' %} +{% set number = '0' %} + about: home: https://pypi.python.org/packages/source/t/threading2 license: BSD summary: threading2 build: - number: '0' + number: {{ number }} package: - name: threading2 - version: 0.2.1 + name: {{ name }} + version: {{ version }} requirements: build: - setuptools @@ -14,10 +18,10 @@ requirements: run: - python x.x source: - fn: threading2-0.2.1.tar.gz + fn: {{ name }}-{{ version }}.tar.gz md5: 4ffb227b9a0e1f3e2a42f69f92a47bae url: - - https://pypi.python.org/packages/source/t/threading2/threading2-0.2.1.tar.gz + - https://pypi.python.org/packages/source/t/threading2/{{ name }}-{{ version }}.tar.gz test: imports: - threading2 |