diff --git a/pyproject.toml b/pyproject.toml index 236544e..60dcb82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,6 +5,12 @@ description = "Flexible FPGA Build System" authors = ["0xMax42 "] license = "MIT" readme = "README.md" +packages = [ + { include = "src", from = "." } +] + +[tool.poetry.scripts] +hdlbuild = "cli:main" [tool.poetry.dependencies] python = "^3.10" diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/hdlbuild.py b/src/cli.py similarity index 100% rename from src/hdlbuild.py rename to src/cli.py