From dc0d8242a8e59f332924a3b9bb8b8db132bdacad Mon Sep 17 00:00:00 2001 From: Max P Date: Sat, 26 Apr 2025 18:52:51 +0000 Subject: [PATCH] Refines package structure and script entry point Updates package inclusion to reflect new directory structure. Adjusts script entry point path to align with updated module organization. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 60dcb82..e46f354 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,11 +6,11 @@ authors = ["0xMax42 "] license = "MIT" readme = "README.md" packages = [ - { include = "src", from = "." } + { include = "hdlbuild", from = "src" } ] [tool.poetry.scripts] -hdlbuild = "cli:main" +hdlbuild = "hdlbuild.cli:main" [tool.poetry.dependencies] python = "^3.10"