-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 773 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 773 Bytes
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
[project]
name = "pycde_example"
version = "0.1.0"
description = "A collection of examples showcasing PyCDE and Mini RISC-V implementation."
authors = [
{ name="Dragon-Git", email="1762578117@qq.com" },
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"PyYAML",
"cocotb>=2.0.0, <3.0.0",
"pycde>=0.9.1, <0.10.0",
]
[project.optional-dependencies]
lint = ['ruff']
doc = ['sphinx']
test = ['pytest-xdist', 'tox', "cocotbext-ahb"]
dev = ['pycde_example[lint, doc, test]']
[project.urls]
"Homepage" = "https://github.com//Dragon-Git/pycde_example"
"Bug Tracker" = "https://github.com//Dragon-Git/pycde_example/issues"
# https://beta.ruff.rs/docs/settings/
[tool.ruff]
line-length = 120
[tool.ruff.lint.pydocstyle]
convention = "google"