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.
This commit is contained in:
2025-04-26 18:52:51 +00:00
parent 28406028c6
commit dc0d8242a8

View File

@@ -6,11 +6,11 @@ authors = ["0xMax42 <Mail@0xMax42.io>"]
license = "MIT" license = "MIT"
readme = "README.md" readme = "README.md"
packages = [ packages = [
{ include = "src", from = "." } { include = "hdlbuild", from = "src" }
] ]
[tool.poetry.scripts] [tool.poetry.scripts]
hdlbuild = "cli:main" hdlbuild = "hdlbuild.cli:main"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3.10"