1
0
Fork 0
mirror of https://git.sr.ht/~kivikakk/niar synced 2024-12-22 12:02:24 +00:00
niar/docs/template/pyproject.toml
2024-08-24 16:59:31 +03:00

29 lines
575 B
TOML

[project]
name = "newproject"
version = "0.0"
description = ""
authors = [
{name = "name", email = "email@example.com"},
]
dependencies = [
"amaranth >= 0.5, < 0.7",
"niar >= 0.1.1",
]
requires-python = ">=3.8"
license = {text = "BSD-2-Clause"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.dev-dependencies]
test = [
"amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards@main",
"pytest>=8.2.2",
"pytest-xdist>=3.6.1",
]
[tool.pytest.ini_options]
addopts = ["-n", "auto"]
testpaths = ["tests"]