1
0
Fork 0
mirror of https://git.sr.ht/~kivikakk/niar synced 2024-12-22 22:32:23 +00:00
niar/template/pyproject.toml

23 lines
427 B
TOML
Raw Normal View History

2024-06-16 14:19:44 +00:00
[project]
name = "newproject"
version = "0.0"
description = ""
authors = [
{name = "name", email = "email@example.com"},
]
dependencies = [
"amaranth >= 0.5, < 0.7",
"amaranth-boards",
2024-07-02 09:59:02 +00:00
"niar >= 0.1.1",
2024-06-16 14:19:44 +00:00
]
requires-python = ">=3.8"
license = {text = "BSD-2-Clause"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
2024-07-02 09:59:02 +00:00
[tool.pytest.ini_options]
addopts = ["-n", "auto"]
testpaths = ["tests"]