forked from pylint-dev/pylint-celery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (19 loc) · 870 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- coding: UTF-8 -*-
from distutils.core import setup
from setuptools import find_packages
_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='[email protected]',
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
)