mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 17:32:25 +00:00
25 lines
509 B
TOML
25 lines
509 B
TOML
|
[project]
|
||
|
name = "niar"
|
||
|
version = "0.1"
|
||
|
description = "A small framework for building projects with Amaranth"
|
||
|
authors = [
|
||
|
{name = "Asherah Connor", email = "ashe@kivikakk.ee"},
|
||
|
]
|
||
|
dependencies = [
|
||
|
"amaranth >= 0.4.5, < 0.6",
|
||
|
]
|
||
|
requires-python = ">=3.8"
|
||
|
license = {text = "BSD-2-Clause"}
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
build = [
|
||
|
"amaranth-boards", # for test
|
||
|
]
|
||
|
|
||
|
[project.urls]
|
||
|
Homepage = "https://github.com/kivikakk/niar"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["pdm-backend"]
|
||
|
build-backend = "pdm.backend"
|