From 42e48ad586a3f73f63dd6eef564c62450b7d3f42 Mon Sep 17 00:00:00 2001 From: Michael Jungo Date: Wed, 12 Jul 2023 20:51:14 +0200 Subject: [PATCH] chore: use pyproject.toml and remove setup.cfg --- pyproject.toml | 6 ++++++ setup.cfg | 12 ------------ 2 files changed, 6 insertions(+), 12 deletions(-) delete mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index ce8ab8f..3dbfe21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,9 @@ [build-system] requires = ["setuptools>=40.6.0", "wheel"] build-backend = "setuptools.build_meta" + +[tool.mypy] +ignore_missing_imports = true + +[tool.isort] +profile = "black" diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 090d0f5..0000000 --- a/setup.cfg +++ /dev/null @@ -1,12 +0,0 @@ -[flake8] -# Default of black -max-line-length = 88 -# Ignore whitespace before : (Black formats non-trivial slicing with spaces) -# and line break before binary operator (same reason) -ignore= E203,W503 - -[mypy] -ignore_missing_imports = true - -[isort] -profile = black