-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
46 lines (40 loc) · 1023 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
43
44
45
46
[project]
name = "manta-fpga"
version = "1.1.0"
authors = [
{ name="Fischer Moseley", email="[email protected]" },
]
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.9"
license = {file = "LICENSE"}
classifiers = ["License :: OSI Approved :: GNU General Public License v3 (GPLv3)"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"codecov",
"pre-commit",
"ruff",
"mkdocs-material",
"mkdocstrings[python]",
"mike",
]
[project.urls]
"Homepage" = "https://github.com/fischermoseley/manta"
"Documentation" = "https://fischermoseley.github.io/manta"
"Issues" = "https://github.com/fischermoseley/manta/issues"
[project.scripts]
manta = "manta:main"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"