-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
73 lines (64 loc) · 1.63 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.pdm.version]
source = "scm"
[project]
dynamic = ["version"]
name = "naps"
description = "naps - The Relaxed Amaranth Packages Collection"
authors = [
{name = "Robin Heinemann", email = "[email protected]"},
{name = "Jaro Habiger", email = "[email protected]"},
]
dependencies = [
"amaranth-boards @ git+https://github.com/amaranth-lang/amaranth-boards",
"amaranth @ git+https://github.com/amaranth-lang/amaranth",
"huffman",
"paramiko",
]
requires-python = "~=3.8"
readme = "README.rst"
license = {file = "LICENSE"}
keywords = ["amaranth apertus fpga gateware video camera"]
[project.urls]
Homepage = "https://github.com/apertus-open-source-cinema/naps"
Documentation = "https://apertus-open-source-cinema.github.io/naps/"
"Bug Tracker" = "https://github.com/apertus-open-source-cinema/naps/issues"
[project.optional-dependencies]
publish = [
"twine>=4.0.2",
]
ci_test = [
"yowasp-yosys>=0.36.0.8.post620",
]
[tool.pdm.dev-dependencies]
test = [
"PiDNG",
"bitarray",
"imageio>=2.16.2",
"matplotlib",
"numba",
"numpy",
"psutil",
"pytest",
"pytest-github-actions-annotate-failures",
"pytest-pycharm",
"pytest-xdist",
"rawpy",
"scipy",
"spidev",
]
doc = [
"sphinx<4",
"sphinx_rtd_theme",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
excludes = ["**/.sim_results"]
[tool.pdm.scripts]
test = "pytest"
[tool.pytest.ini_options]
python_files = ["*_test.py"]
addopts = ["-n", "auto" ]
testpaths = ["naps", "applets"]
filterwarnings = ["ignore::cryptography.utils.CryptographyDeprecationWarning"]