Skip to content

Commit

Permalink
wheel: Add a recipe for wheel.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Jul 16, 2016
1 parent f743cbe commit cfeba6a
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions recipes/wheel/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{% set name = "wheel" %}
{% set version = "0.29.0" %}
{% set checksum = "555a67e4507cedee23a0deb9651e452f" %}
{% set number = 0 %}

package:
name: {{ name.lower() }}
version: {{ version }}

source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
md5: {{ checksum }}

build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
entry_points:
- wheel=wheel.tool:main

requirements:
build:
- python
- setuptools

run:
- python
- setuptools

test:
imports:
- wheel
- wheel.signatures
- wheel.test
- wheel.tool

commands:
- wheel --help

requires:
- coverage
- jsonschema
- pytest
- pytest-cov

about:
home: https://bitbucket.org/pypa/wheel/
license: MIT
summary: A built-package format for Python.

extra:
recipe-maintainers:
- jakirkham

0 comments on commit cfeba6a

Please sign in to comment.