summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 223e9c5724a90a3f54c96fee22d317a88b1be8f1 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[metadata]
name = pylint
version = attr: pylint.__version__
license = GPL-2.0-or-later
license_files =
    COPYING
    CONTRIBUTORS.txt
description = python code static checker
keywords = static code analysis linter python lint
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Python Code Quality Authority
author_email = code-quality@python.org
url = https://github.com/PyCQA/pylint
project_urls =
    "What's New"=https://pylint.pycqa.org/en/latest/whatsnew/
    "Bug tracker"=https://github.com/PyCQA/pylint/issues
    "User manual"=http://pylint.pycqa.org/en/latest/
    "Contributing"=http://pylint.pycqa.org/en/latest/development_guide/contribute.html
    "Technical references"=http://pylint.pycqa.org/en/latest/technical_reference/index.html
    "Mailing list"=mailto:code-quality@python.org
classifiers =
    Development Status :: 6 - Mature
    Environment :: Console
    Intended Audience :: Developers
    License :: OSI Approved :: GNU General Public License (GPL)
    Operating System :: OS Independent
    Programming Language :: Python
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3 :: Only
    Programming Language :: Python :: Implementation :: CPython
    Programming Language :: Python :: Implementation :: PyPy
    Topic :: Software Development :: Debuggers
    Topic :: Software Development :: Quality Assurance
    Topic :: Software Development :: Testing

[options]
zip_safe = True
packages = find:
python_requires = ~=3.6
install_requires =
    astroid>=2.5.2,<2.7
    isort>=4.2.5,<6
    mccabe>=0.6,<0.7
    toml>=0.7.1
    colorama;sys_platform=="win32"

[options.entry_points]
console_scripts =
    pylint = pylint:run_pylint
    epylint = pylint:run_epylint
    pyreverse = pylint:run_pyreverse
    symilar = pylint:run_symilar

[aliases]
test = pytest

[tool:pytest]
testpaths = tests