manta/pyproject.toml

38 lines
781 B
TOML
Raw Normal View History

2023-02-14 23:14:39 +01:00
[project]
2023-12-28 23:22:29 +01:00
name = "manta"
version = "0.1.0"
2023-02-14 23:14:39 +01:00
authors = [
{ name="Fischer Moseley", email="fischerm@mit.edu" },
]
description = "An In-Situ Debugging Tool for Programmable Hardware"
readme = "README.md"
dependencies = [
2024-01-07 21:49:20 +01:00
"amaranth[builtin-yosys]",
"PyYAML",
"pyserial",
2024-02-10 03:58:02 +01:00
"liteeth@git+https://github.com/enjoy-digital/liteeth@2023.12",
"pyvcd",
2023-02-14 23:14:39 +01:00
]
requires-python = ">=3.8"
2023-02-14 23:14:39 +01:00
2023-12-28 23:22:29 +01:00
[project.optional-dependencies]
dev = [
"pytest",
"black",
"mkdocs-material",
"amaranth_boards@git+https://github.com/amaranth-lang/amaranth-boards"
]
2023-02-14 23:14:39 +01:00
[project.urls]
"Homepage" = "https://github.com/fischermoseley/manta"
[project.scripts]
manta = "manta:main"
2023-02-14 23:14:39 +01:00
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"