Skip to content

Commit

Permalink
recipes: Add vulture.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed Aug 10, 2016
1 parent ebb0ac6 commit db44a43
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions recipes/vulture/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{% set name = "vulture" %}
{% set version = "0.10" %}
{% set sha256 = "9c2dc36b84f3729361990b4488b7fde1cbe5afb9e3b59456aafc6928684fcd4b" %}

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
sha256: {{ sha256 }}

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

requirements:
build:
- python
- setuptools
run:
- python

test:
imports:
- vulture

commands:
- vulture --help

about:
home: https://bitbucket.org/jendrikseipp/vulture
license: MIT
summary: 'Find dead code'

extra:
recipe-maintainers:
- jakirkham

0 comments on commit db44a43

Please sign in to comment.