mirror of
https://git.sr.ht/~kivikakk/niar
synced 2024-12-22 23:32:24 +00:00
chotto.
This commit is contained in:
parent
9e724857ef
commit
071f1cef41
|
@ -17,7 +17,7 @@ def cli(np: Project):
|
||||||
"build", help="build the design, and optionally program it"
|
"build", help="build the design, and optionally program it"
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
if getattr(np, "cxxrtl_targets"):
|
if hasattr(np, "cxxrtl_targets"):
|
||||||
cxxrtl.add_arguments(
|
cxxrtl.add_arguments(
|
||||||
np, subparsers.add_parser("cxxrtl", help="run the C++ simulator tests")
|
np, subparsers.add_parser("cxxrtl", help="run the C++ simulator tests")
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,18 +2,14 @@
|
||||||
name = "niar"
|
name = "niar"
|
||||||
version = "0.1"
|
version = "0.1"
|
||||||
description = "A small framework for building projects with Amaranth"
|
description = "A small framework for building projects with Amaranth"
|
||||||
authors = [
|
authors = [{ name = "Asherah Connor", email = "ashe@kivikakk.ee" }]
|
||||||
{name = "Asherah Connor", email = "ashe@kivikakk.ee"},
|
dependencies = ["amaranth >= 0.5, < 0.7"]
|
||||||
]
|
|
||||||
dependencies = [
|
|
||||||
"amaranth >= 0.4.5, < 0.6",
|
|
||||||
]
|
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
license = {text = "BSD-2-Clause"}
|
license = { text = "BSD-2-Clause" }
|
||||||
|
|
||||||
[project.optional-dependencies]
|
[project.optional-dependencies]
|
||||||
build = [
|
build = [
|
||||||
"amaranth-boards", # for test
|
"amaranth-boards", # for test
|
||||||
]
|
]
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
|
|
Loading…
Reference in a new issue