-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1229 from jakirkham/add_pylint-celery
Add pylint-celery
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{% set name = "pylint-celery" %} | ||
{% set version = "0.3" %} | ||
{% set sha256 = "41e32094e7408d15c044178ea828dd524beedbdbe6f83f712c5e35bde1de4beb" %} | ||
|
||
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 | ||
|
||
requirements: | ||
build: | ||
- python | ||
- setuptools | ||
|
||
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 |