-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (38 loc) · 985 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hexastorm"
version = "0.1.0"
description = "amaranth framework for writing to a substrate with a laser"
authors = [
{ name = "Rik Starmans", email = "hstarmans@hexastorm.com" }
]
license = { file = "LICENSE.txt" }
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"amaranth-boards",
"cairosvg>=2.7.1",
"luna-usb",
"numba>=0.56.4",
"numpy==1.19.5",
"pillow>=11.2.1",
"scipy>=1.10.1",
"yowasp-nextpnr-ice40==0.6.0.0.post440",
"yowasp-yosys==0.40.0.0.post707",
]
[dependency-groups]
dev = [
"black>=25.1.0",
"nbqa>=1.9.1",
"ruff>=0.11.5",
]
raspberry = [
"opencv-python>=4.5.3.56",
]
[tool.black]
line-length = 79
[tool.uv.sources]
luna-usb = { git = "https://github.com/hstarmans/luna.git", rev = "patch1" }
amaranth-boards = { git = "https://github.com/amaranth-lang/amaranth-boards/", rev = "1706758" }