From b2c7cc9865635b3eeeb53d0df7a53694fc0d1528 Mon Sep 17 00:00:00 2001 From: Andrea Cecchi Date: Wed, 17 Jan 2024 12:33:42 +0100 Subject: [PATCH] flake8 and pyroma --- setup.cfg | 15 +++++++++++++-- setup.py | 1 + 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index e3c5e00..bd9250c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,6 +15,17 @@ line_length = 200 not_skip = __init__.py [flake8] +# black compatible flake8 rules: +ignore = + W503, + C812, + E501 + T001 + C813 +# E203, E266 exclude = bootstrap.py,docs,*.egg.,omelette -ignore = W503 -max-complexity = 15 +max-line-length = 88 +max-complexity = 18 +select = B,C,E,F,W,T4,B9 +builtins = unicode,basestring + diff --git a/setup.py b/setup.py index 97b479e..1ff2183 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ # Get more from https://pypi.org/classifiers/ classifiers=[ "Environment :: Web Environment", + "Development Status :: 5 - Production/Stable", "Framework :: Plone", "Framework :: Plone :: Addon", "Framework :: Plone :: 5.2",