From 08679c2680b49119e0414688a80e8dc2659236b4 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Wed, 16 Jul 2025 11:41:18 +0200 Subject: [PATCH] style(pyproject): simplify include array formatting --- pyproject.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3dc0ef6..f418f32 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,9 +6,7 @@ authors = ["0xMax42 "] license = "MIT" readme = "README.md" packages = [{ include = "hdlbuild", from = "src" }] -include = [ - "src/hdlbuild/templates/*" -] +include = ["src/hdlbuild/templates/*"] [tool.poetry.scripts] hdlbuild = "hdlbuild.cli:main"