-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
42 lines (36 loc) · 844 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
[project]
name = "manta"
version = "1.0.1"
authors = [
{ name="Fischer Moseley", email="fischer.moseley@gmail.com" },
]
description = "A configurable and approachable tool for FPGA debugging and rapid prototyping"
readme = "README.md"
dependencies = [
"amaranth[builtin-yosys]==0.5.0",
"PyYAML",
"pyserial",
"liteeth==2023.12",
"pyvcd",
]
requires-python = ">=3.8"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"codecov",
"ruff",
"mkdocs-material",
"mkdocstrings[python]",
"mike",
"amaranth_boards@git+https://github.com/amaranth-lang/amaranth-boards"
]
[project.urls]
"Homepage" = "https://github.com/fischermoseley/manta"
[project.scripts]
manta = "manta:main"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"