manta/pyproject.toml

44 lines
860 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"
2024-07-18 15:34:34 +02:00
version = "1.0.1"
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
]
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-06-20 20:47:34 +02:00
"amaranth[builtin-yosys]==0.5.0",
"PyYAML",
"pyserial",
2024-08-06 00:51:01 +02:00
"liteeth==2023.12",
"pyvcd",
2023-02-14 23:14:39 +01:00
]
2024-11-25 01:13:52 +01:00
requires-python = ">=3.9"
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",
"codecov",
"pre-commit",
2024-09-09 17:45:22 +02:00
"ruff",
2023-12-28 23:22:29 +01:00
"mkdocs-material",
"mkdocstrings[python]",
2024-10-06 18:52:23 +02:00
"mike",
2023-12-28 23:22:29 +01:00
"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"]
2024-06-20 20:47:34 +02:00
build-backend = "setuptools.build_meta"