summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-05 00:24:12 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-05 15:08:27 +0200
commit6a950c133810425062a9aaa9f9dd3806f06f55ae (patch)
tree9640a854238446bf01f5496fa441a101f1d1f318 /setup.cfg
parentd5858f6b83eb59999c8b9f5566a119ea6e8638e5 (diff)
downloadpylint-git-6a950c133810425062a9aaa9f9dd3806f06f55ae.tar.gz
Add setup-cfg-fmt in pre-commit configuration
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg52
1 files changed, 26 insertions, 26 deletions
diff --git a/setup.cfg b/setup.cfg
index 80bec789a..5d3f9ed86 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,24 +1,16 @@
[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
+url = https://github.com/PyCQA/pylint
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
+license = GPL-2.0-or-later
+license_files =
+ COPYING
+ CONTRIBUTORS.txt
classifiers =
Development Status :: 6 - Mature
Environment :: Console
@@ -27,27 +19,35 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
+ Programming Language :: Python :: 3 :: Only
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
+keywords = static code analysis linter python lint
+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
[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"
+python_requires = ~=3.6
+zip_safe = True
[options.entry_points]
console_scripts =
@@ -61,16 +61,16 @@ test = pytest
[tool:pytest]
testpaths = tests
-python_files=*test_*.py
-addopts=-m "not acceptance"
+python_files = *test_*.py
+addopts = -m "not acceptance"
markers =
- acceptance:
- benchmark: Baseline of pylint performance, if this regress something serious happened
+ acceptance:
+ benchmark: Baseline of pylint performance, if this regress something serious happened
[isort]
-multi_line_output=3
-line_length=88
-known_third_party=astroid, sphinx, isort, pytest, mccabe, six, toml
-include_trailing_comma=True
-skip_glob=tests/functional/**,tests/input/**,tests/extensions/data/**,tests/regrtest_data/**,tests/data/**,astroid/**,venv/**
-src_paths=pylint
+multi_line_output = 3
+line_length = 88
+known_third_party = astroid, sphinx, isort, pytest, mccabe, six, toml
+include_trailing_comma = True
+skip_glob = tests/functional/**,tests/input/**,tests/extensions/data/**,tests/regrtest_data/**,tests/data/**,astroid/**,venv/**
+src_paths = pylint