File: setup.py

package info (click to toggle)
pylint-celery 0.3-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 136 kB
  • sloc: python: 63; makefile: 5; sh: 4
file content (22 lines) | stat: -rw-r--r-- 844 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: UTF-8 -*-
from setuptools import find_packages, setup

_version = "0.3"
_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])

_short_description = "pylint-celery is a Pylint plugin to aid Pylint in recognising and understanding" \
                     "errors caused when using the Celery library"


setup( name='pylint-celery',
       url='https://github.com/landscapeio/pylint-celery',
       author='landscape.io',
       author_email='code@landscape.io',
       description=_short_description,
       version=_version,
       packages=_packages,
       install_requires=['pylint>=1.0', 'astroid>=1.0', 'pylint-plugin-utils>=0.2.1'],
       license='GPLv2',
       keywords='pylint celery plugin',
       zip_safe=False,  # https://github.com/landscapeio/prospector/issues/18#issuecomment-49857277
)