teuthida/pyproject.toml
Christoph Heiss 8cbd199e1e
feat: Add command to generate Verilog
Signed-off-by: Christoph Heiss <contact@christoph-heiss.at>
2022-03-26 21:47:39 +01:00

21 lines
415 B
TOML

[tool.poetry]
name = "teuthida"
version = "0.1.0"
description = ""
authors = ["Christoph Heiss <contact@christoph-heiss.at>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
amaranth = "^0.3"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
sim = "teuthida.sim:start"
verilog = "teuthida.gen:gen_verilog"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"