Skip to content

Commit

Permalink
Merge pull request #1217 from jakirkham/add_vulture
Browse files Browse the repository at this point in the history
Add vulture
  • Loading branch information
jakirkham authored Aug 11, 2016
2 parents 97d21b6 + db44a43 commit 763636c
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 763636c

Please sign in to comment.