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 /pytools | |
parent | d53f69876e2c1cccdd2a5b12da9096dd3bd8aa1c (diff) | |
download | astroconda-contrib-4fe08aedce73669d3225c8bbe8dbecc108d91133.tar.gz |
Improve recipe uniformity
Diffstat (limited to 'pytools')
-rw-r--r-- | pytools/meta.yaml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/pytools/meta.yaml b/pytools/meta.yaml index 87e3cdb..0aa6b7e 100644 --- a/pytools/meta.yaml +++ b/pytools/meta.yaml @@ -1,12 +1,19 @@ +{% set name = 'pytools' %} +{% set version = '2016.1' %} +{% set number = '1' %} + about: - home: https://pypi.python.org/pytools + home: https://pypi.python.org/{{name}} license: MIT summary: A collection of tools for Python + build: - number: '1' + number: {{number}} + package: - name: pytools - version: '2016.1' + name: {{name}} + version: {{version}} + requirements: build: - decorator >=3.2.0 @@ -21,11 +28,13 @@ requirements: - six >=1.8.0 - numpy - python x.x + source: - fn: pytools-2016.1.tar.gz + fn: {{name}}-{{version}}.tar.gz md5: d8af5c5bea24aa4a21881684dcf03b06 url: - - https://pypi.python.org/packages/source/p/pytools/pytools-2016.1.tar.gz + - https://pypi.python.org/packages/source/p/{{name}}/{{name}}-{{version}}.tar.gz + test: imports: - pytools |