Files
hdlbuild/pyproject.toml
Max P 9274461d7a Updates package inclusion and dependency list
Adds template files to the package inclusion list to ensure they are distributed with the build.

Removes an unused dependency to streamline the dependency list.
2025-04-27 17:57:52 +00:00

26 lines
529 B
TOML

[tool.poetry]
name = "hdlbuild"
version = "0.4.0"
description = "Flexible FPGA Build System"
authors = ["0xMax42 <Mail@0xMax42.io>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "hdlbuild", from = "src" }]
include = [
"src/hdlbuild/templates/*"
]
[tool.poetry.scripts]
hdlbuild = "hdlbuild.cli:main"
[tool.poetry.dependencies]
python = "^3.10"
pyyaml = "^6.0.2"
pydantic = "^2.11.3"
rich = "^14.0.0"
gitpython = "^3.1.44"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"