2023-02-14 23:14:39 +01:00
|
|
|
[project]
|
2024-11-28 18:40:40 +01:00
|
|
|
name = "manta-fpga"
|
2024-11-28 03:17:30 +01:00
|
|
|
version = "1.1.0"
|
2023-02-14 23:14:39 +01:00
|
|
|
authors = [
|
2024-06-20 20:47:34 +02:00
|
|
|
{ name="Fischer Moseley", email="fischer.moseley@gmail.com" },
|
2023-02-14 23:14:39 +01:00
|
|
|
]
|
2024-07-18 15:35:37 +02:00
|
|
|
description = "A configurable and approachable tool for FPGA debugging and rapid prototyping"
|
2023-02-14 23:14:39 +01:00
|
|
|
readme = "README.md"
|
|
|
|
|
dependencies = [
|
2024-12-04 04:50:04 +01:00
|
|
|
"amaranth[builtin-yosys]>=0.5.0",
|
2023-02-15 02:53:36 +01:00
|
|
|
"PyYAML",
|
|
|
|
|
"pyserial",
|
2024-08-06 00:51:01 +02:00
|
|
|
"liteeth==2023.12",
|
2023-02-15 02:53:36 +01:00
|
|
|
"pyvcd",
|
2023-02-14 23:14:39 +01:00
|
|
|
]
|
|
|
|
|
|
2024-11-25 01:13:52 +01:00
|
|
|
requires-python = ">=3.9"
|
2024-12-04 04:50:04 +01:00
|
|
|
license = {file = "LICENSE"}
|
|
|
|
|
classifiers = ["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"]
|
2023-02-14 23:14:39 +01:00
|
|
|
|
2023-12-28 23:22:29 +01:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest",
|
2024-09-09 17:45:22 +02:00
|
|
|
"pytest-cov",
|
2024-09-10 21:45:40 +02:00
|
|
|
"codecov",
|
2024-11-27 22:40:20 +01:00
|
|
|
"pre-commit",
|
2024-09-09 17:45:22 +02:00
|
|
|
"ruff",
|
2023-12-28 23:22:29 +01:00
|
|
|
"mkdocs-material",
|
2024-09-04 03:42:00 +02:00
|
|
|
"mkdocstrings[python]",
|
2024-10-06 18:52:23 +02:00
|
|
|
"mike",
|
2023-12-28 23:22:29 +01:00
|
|
|
]
|
|
|
|
|
|
2023-02-14 23:14:39 +01:00
|
|
|
[project.urls]
|
|
|
|
|
"Homepage" = "https://github.com/fischermoseley/manta"
|
2024-12-04 04:50:04 +01:00
|
|
|
"Documentation" = "https://fischermoseley.github.io/manta"
|
|
|
|
|
"Issues" = "https://github.com/fischermoseley/manta/issues"
|
2023-02-15 02:53:36 +01:00
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
manta = "manta:main"
|
2023-02-14 23:14:39 +01:00
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["src"]
|
|
|
|
|
|
2023-02-15 02:53:36 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools"]
|
2024-06-20 20:47:34 +02:00
|
|
|
build-backend = "setuptools.build_meta"
|