From 42ff37f969ce791c8949c58fbd06085c42b56a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Tue, 5 Mar 2024 16:17:16 +0100 Subject: [PATCH] fix pyproject.toml --- pyproject.toml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ff494f75..a3a997a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ authors = [ {name = "Piotr MaĹlanka", email = "pmaslanka@smok.co"} ] requires-python = ">= 3.5" -license = {file = "LICENSE", text="MIT License"} +license = {text="MIT License"} keywords = ["ha", "high availability", "scalable", "scalability", "server", "metrics", "tracing", "instrumentation"] classifiers = [ "Programming Language :: Python", @@ -97,17 +97,20 @@ disable = ''' ''' [tool.coverage.run] -branch=1 -source= ["satella"] -concurrency="thread" +branch = 1 +source = ["satella"] +concurrency = "thread" omit= [ "tests/*", ".eggs/*", "setup.py", "satella/__init__.py", - "satella/os/signals.py"] + "satella/os/signals.py" +] -[report] +[tool.coverage.report] include=[ - "satella/*"] + "satella/*" +] + -- GitLab