forked from pylint-dev/pylint-plugin-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 981 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
24
25
26
27
28
29
30
31
32
# -*- coding: UTF-8 -*-
from setuptools import find_packages, setup
_version = "0.6"
_packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
_short_description = "Utilities and helpers for writing Pylint plugins"
_classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: Unix',
'Topic :: Software Development :: Quality Assurance',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
setup(
name='pylint-plugin-utils',
url='https://github.com/landscapeio/pylint-plugin-utils',
author='landscape.io',
author_email='[email protected]',
description=_short_description,
version=_version,
install_requires=['pylint>=1.7'],
packages=_packages,
license='GPLv2',
classifiers=_classifiers,
keywords='pylint plugin helpers'
)