summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:36:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 17:36:10 +0000
commitf0d475e3b5d4f226d24837256efc697271b1c611 (patch)
treeeeb27b686fce91e13efc5043dcf47d131c392b56 /setup.cfg
parentInitial commit. (diff)
downloadptpython-f0d475e3b5d4f226d24837256efc697271b1c611.tar.xz
ptpython-f0d475e3b5d4f226d24837256efc697271b1c611.zip
Adding upstream version 3.0.22.upstream/3.0.22upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg41
1 files changed, 41 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..80dfec6
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,41 @@
+[bdist_wheel]
+universal=1
+
+[flake8]
+exclude=__init__.py
+max_line_length=150
+ignore=
+ E114,
+ E116,
+ E117,
+ E121,
+ E122,
+ E123,
+ E125,
+ E126,
+ E127,
+ E128,
+ E131,
+ E171,
+ E203,
+ E211,
+ E221,
+ E227,
+ E231,
+ E241,
+ E251,
+ E301,
+ E402,
+ E501,
+ E701,
+ E702,
+ E704,
+ E731,
+ E741,
+ F401,
+ F403,
+ F405,
+ F811,
+ W503,
+ W504,
+ E722