1
0
Fork 0
mirror of https://git.sr.ht/~kivikakk/niar synced 2024-12-22 18:42:25 +00:00
niar/pyproject.toml
2024-07-04 18:25:41 +03:00

38 lines
805 B
TOML

[project]
name = "niar"
dynamic = ["version"]
description = "A small framework for building projects with Amaranth"
authors = [
{ name = "Asherah Connor", email = "ashe@kivikakk.ee" },
]
dependencies = [
"amaranth[builtin-yosys] >= 0.5",
]
requires-python = ">=3.8"
license = { text = "BSD-2-Clause" }
readme = "README.md"
[project.urls]
Homepage = "https://github.com/kivikakk/niar"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
[tool.pdm.dev-dependencies]
test = [
"pytest>=8.2.2",
"pytest-xdist>=3.6.1",
"amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards@main",
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "-n", "auto"]
testpaths = ["tests"]