Skip to content

setup.cfg: Replace dash-separated options #64

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ author = OpenStack
author_email = [email protected]
maintainer = PyCQA
maintainer_email = [email protected]
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
Expand All @@ -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