-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 1.11 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[project]
name = "avasoc"
version = "0.0"
description = ""
authors = [
{name = "Charlotte", email = "[email protected]"},
]
dependencies = [
"niar @ git+https://github.com/charlottia/niar@e1c078f4a30e96222d0a0527f65c6753b164bb4c",
"amaranth @ git+https://github.com/charlottia/amaranth@e5644486fdae47c1372ef2a672b0249857694d66",
"amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards@19b97324ecf9111c5d16377af79f82aad761c476",
"amaranth-stdio @ git+https://github.com/charlottia/amaranth-stdio@ca4fac262a2290495c82d76aa785bd8707afa781",
"amaranth-soc @ git+https://github.com/charlottia/amaranth-soc@619521679eaa4a40e089bd29a97e2573b293877f",
]
requires-python = ">=3.8"
license = {text = "0BSD"}
[project.urls]
Homepage = "https://github.com/charlottia/ava"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project.scripts]
avasoc = "avasoc:main"
[tool.pdm.dev-dependencies]
test = [
"pytest>=8.2.2",
"pytest-xdist>=3.6.1",
"pytest-watcher>=0.4.2",
]
[tool.pytest.ini_options]
# addopts = ["-n", "auto"]
testpaths = ["tests"]
# markers = ["slow"]