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

34 lines
847 B
TOML
Raw Permalink Normal View History

2024-06-13 18:51:30 +00:00
[project]
name = "niar"
2024-08-18 08:06:43 +00:00
version = "0.1.3"
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 = [
2024-08-22 16:46:38 +00:00
"amaranth[builtin-yosys]",
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]
2024-08-18 08:06:43 +00:00
Homepage = "https://sr.ht/~kivikakk/niar"
2024-06-13 18:51:30 +00:00
2024-08-22 16:46:38 +00:00
# [build-system]
# requires = ["pdm-backend"]
# build-backend = "pdm.backend"
2024-07-01 19:29:36 +00:00
2024-08-22 16:46:38 +00:00
[tool.pytest.ini_options]
testpaths = ["tests"]
2024-07-01 19:29:36 +00:00
2024-08-22 16:46:38 +00:00
[tool.uv]
dev-dependencies = [
2024-07-01 19:29:36 +00:00
"pytest>=8.2.2",
2024-08-22 16:46:38 +00:00
"amaranth-boards",
2024-07-01 19:29:36 +00:00
]
2024-08-22 16:46:38 +00:00
[tool.uv.sources]
amaranth-boards = { git = "https://github.com/amaranth-lang/amaranth-boards", rev = "19b97324ecf9111c5d16377af79f82aad761c476" }
amaranth = { git = "https://github.com/amaranth-lang/amaranth", rev = "bc2e90913311e326d8f396e33d7a1c7f6eef6e4e" }