Skip to content

Commit

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

package:
name: {{ name|lower }}
version: {{ version }}

source:
{% set pypi_name = name.replace("_", "-") %}
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ pypi_name[0] }}/{{ pypi_name }}/{{ pypi_name }}-{{ version }}.tar.gz
sha256: {{ sha256 }}

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

requirements:
build:
- python
- setuptools
- pylint >=1.0
- astroid >=1.0
- pylint-plugin-utils >=0.2.1

run:
- python
- pylint >=1.0
- astroid >=1.0
- pylint-plugin-utils >=0.2.1

test:
imports:
- pylint_celery

about:
home: https://github.com/landscapeio/pylint-celery
license: GPL 2
summary: 'pylint-celery is a Pylint plugin to aid Pylint in recognising and understandingerrors caused when using the Celery library'

extra:
recipe-maintainers:
- jakirkham

0 comments on commit 7a810d7

Please sign in to comment.