-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.23 KB
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
# Copyright lowRISC contributors (COSMIC project).
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
[project]
name = "mocha"
version = "0.0.0"
description = "CHERI-Mocha is a secure enclave reference design and is part of the COSMIC project."
requires-python = ">=3.10"
dependencies = [
"anytree==2.8.0",
"hjson==3.1.0",
"wheel==0.41.2",
"pyserial==3.5",
"pydantic>=2.8.2,<3",
"jinja2>=3.1.6,<4",
"semantic-version>=2.10.0,<3",
"pycryptodome>=3.23.0,<4",
"tabulate>=0.9.0,<0.10",
"setuptools>=80.9.0",
"packaging>=25.0",
# Needed for tlgen.
"mako>=1.2",
# Needed for block-level DV.
"mistletoe==0.9.0",
"peakrdl-systemrdl >= 1.0",
"rdl2ot>=0.4",
# Build system.
"fusesoc==2.4.3",
"pyright>=1.1.403",
"ruff>=0.9.6",
"reuse>=5.0.2",
"pytest>=8.4.1",
"twine>=6.1.0",
# Design verification runner.
"dvsim>=1.16",
"svgwrite>=1.4.3",
"pyelftools>=0.32",
]
[tool.setuptools]
py-modules = []
[tool.ruff]
target-version = "py310"
line-length = 100
extend-exclude = [
"hw/vendor",
"util/vendor.py",
]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "SIM", "PTH", "C4", "A", "RUF", "PERF"]