Introduces a dependency resolver to clone and manage project dependencies recursively. Updates CLI to include a new "dep" command for dependency resolution. Enhances source resolver to handle dependencies and expand all sources. Improves console utilities with live mode for real-time feedback. Marks dependency names in project configuration as optional. Enables streamlined multi-repository workflows and dependency management.
21 lines
396 B
TOML
21 lines
396 B
TOML
[tool.poetry]
|
|
name = "hdlbuild"
|
|
version = "0.1.0"
|
|
description = "Flexible FPGA Build System"
|
|
authors = ["0xMax42 <Mail@0xMax42.io>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
pyyaml = "^6.0.2"
|
|
doit = "^0.36.0"
|
|
pydantic = "^2.11.3"
|
|
rich = "^14.0.0"
|
|
gitpython = "^3.1.44"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|