manta/pyproject.toml

47 lines
1023 B
TOML
Raw Normal View History

2023-02-14 23:14:39 +01:00
[project]
2024-11-28 18:40:40 +01:00
name = "manta-fpga"
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
]
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",
"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"
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",
"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
]
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"
[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"