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

21 lines
511 B
TOML
Raw Normal View History

2024-06-13 18:51:30 +00:00
[project]
name = "niar"
version = "0.1"
description = "A small framework for building projects with Amaranth"
2024-06-15 09:01:21 +00:00
authors = [{ name = "Asherah Connor", email = "ashe@kivikakk.ee" }]
dependencies = ["amaranth[builtin-yosys] >= 0.5, < 0.7"]
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-06-13 18:51:30 +00:00
[project.optional-dependencies]
build = [
2024-06-15 09:01:21 +00:00
"amaranth-boards", # for test
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"