diff --git a/pyproject.toml b/pyproject.toml index ff494f75b80c86799a7467104e8026c85b4e7115..a3a997a4cdb86e700dc679b36923b2ef3fa1bdb5 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/*" +] +