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
)
|