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

38 lines
805 B
TOML
Raw Normal View History

2024-06-13 18:51:30 +00:00
[project]
name = "niar"
2024-07-04 15:25:41 +00:00
dynamic = ["version"]
2024-06-13 18:51:30 +00:00
description = "A small framework for building projects with Amaranth"
2024-07-01 19:29:36 +00:00
authors = [
{ name = "Asherah Connor", email = "ashe@kivikakk.ee" },
]
dependencies = [
"amaranth[builtin-yosys] >= 0.5",
2024-07-01 19:29:36 +00:00
]
2024-06-13 18:51:30 +00:00
requires-python = ">=3.8"
2024-06-15 09:01:21 +00:00
license = { text = "BSD-2-Clause" }
2024-07-01 19:29:36 +00:00
readme = "README.md"
2024-06-13 18:51:30 +00:00
[project.urls]
Homepage = "https://github.com/kivikakk/niar"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
2024-07-01 19:29:36 +00:00
[tool.pdm]
distribution = true
2024-07-04 15:25:41 +00:00
[tool.pdm.version]
source = "scm"
2024-07-01 19:29:36 +00:00
[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",
2024-07-01 19:29:36 +00:00
]
[tool.pytest.ini_options]
addopts = ["--import-mode=importlib", "-n", "auto"]
testpaths = ["tests"]