From c1ecdf1f0849ecba689788bd21cbdd8697ec0c25 Mon Sep 17 00:00:00 2001 From: Niklas Peng Date: Fri, 30 May 2025 19:45:17 +0200 Subject: [PATCH] pyproject.toml --- pyproject.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..8ca8185 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,17 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[tool.black] +line-length = 88 +target-version = ["py38"] +include = '\.pyi?$' + +[tool.isort] +profile = "black" +multi_line_output = 3 + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = "test_*.py" +addopts = "--cov=src --cov-report=term-missing" \ No newline at end of file