Adds project-specific configurations and dependencies
Updates .gitignore to exclude build artifacts and project-specific files. Introduces pyproject.toml with project metadata, dependencies, and build system configuration using Poetry. Facilitates project reproducibility and dependency management.
This commit is contained in:
10
.gitignore
vendored
10
.gitignore
vendored
@@ -174,3 +174,13 @@ cython_debug/
|
||||
# PyPI configuration file
|
||||
.pypirc
|
||||
|
||||
# hdlbuild specific
|
||||
|
||||
.hdlbuild_deps/
|
||||
.working/
|
||||
reports/
|
||||
output/
|
||||
vhdl/
|
||||
poetry.lock
|
||||
project.yml
|
||||
.project/
|
18
pyproject.toml
Normal file
18
pyproject.toml
Normal file
@@ -0,0 +1,18 @@
|
||||
[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.12"
|
||||
pyyaml = "^6.0.2"
|
||||
doit = "^0.36.0"
|
||||
pydantic = "^2.11.3"
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
Reference in New Issue
Block a user