From 5684ba8ed17566ad43f0faafa72e14eb45d9034a Mon Sep 17 00:00:00 2001 From: Matt Smith <48835712+00-matt@users.noreply.github.com> Date: Mon, 27 Sep 2021 12:19:01 +0100 Subject: [PATCH] setup.cfg: Replace dash-separated options (#64) --- setup.cfg | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.cfg b/setup.cfg index 50f3114..afb3203 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ author = OpenStack author_email = openstack-discuss@lists.openstack.org maintainer = PyCQA maintainer_email = code-quality@python.org -home-page = https://github.com/pycqa/doc8 +home_page = https://github.com/pycqa/doc8 long_description_content_type = text/x-rst classifier = Intended Audience :: Information Technology @@ -30,12 +30,12 @@ console_scripts = [flake8] builtins = _ -show-source = True +show_source = True exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build # Minimal config needed to make flake8 compatible with black output: -max-line-length=160 +max_line_length=160 # See https://github.com/PyCQA/pycodestyle/issues/373 -extend-ignore = E203 +extend_ignore = E203 [options] python_requires = >=3.6