From d918dd35e0d2ae2fa6c47eeff184bb63fe086a89 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 21:59:24 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5b59b41..6924bcc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,10 +11,10 @@ description = "apipkg: namespace control and lazy-import mechanism" readme = "README.rst" license = "MIT" maintainers = [ - { name = "Ronny Pfannschmidt", email = "opensource+apipkg@ronnypfannschmidt.de"} + { name = "Ronny Pfannschmidt", email = "opensource+apipkg@ronnypfannschmidt.de" }, ] authors = [ - { name = "holger krekel" }, + { name = "holger krekel" }, ] requires-python = ">=3.7" classifiers = [ @@ -38,15 +38,14 @@ classifiers = [ dynamic = [ "version", ] -[project.urls] -Homepage = "https://github.com/pytest-dev/apipkg" +urls.Homepage = "https://github.com/pytest-dev/apipkg" [tool.hatch.version] source = "vcs" [tool.hatch.build.targets.sdist] include = [ - "/src", + "/src", ] [tool.hatch.build.hooks.vcs] version-file = "src/apipkg/_version.py" @@ -58,7 +57,13 @@ dependencies = [ "pytest-cov", ] [[tool.hatch.envs.test.matrix]] -python = ["3.7", "3.8", "3.9", "3.10", "3.11"] +python = [ + "3.7", + "3.8", + "3.9", + "3.10", + "3.11", +] [tool.hatch.envs.test.scripts] run-coverage = "pytest --cov-config=pyproject.toml --cov=pkg --cov=tests {args}"