manta/pyproject.toml

38 lines
781 B
TOML

[project]
name = "manta"
version = "1.0.0"
authors = [
{ name="Fischer Moseley", email="fischerm@mit.edu" },
]
description = "An In-Situ Debugging Tool for Programmable Hardware"
readme = "README.md"
dependencies = [
"amaranth[builtin-yosys]",
"PyYAML",
"pyserial",
"liteeth@git+https://github.com/enjoy-digital/liteeth@2023.12",
"pyvcd",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"pytest",
"black",
"mkdocs-material",
"amaranth_boards@git+https://github.com/amaranth-lang/amaranth-boards"
]
[project.urls]
"Homepage" = "https://github.com/fischermoseley/manta"
[project.scripts]
manta = "manta:main"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"