-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (39 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
48 lines (39 loc) · 1.09 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
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
[project]
name = "rdl2ot"
version = "0.4.0"
description = "An extension of PeakRDL to generate OpenTitan RTL."
requires-python = ">=3.10"
keywords = ["SystemRDL", "OpenTitan", "Codegen"]
readme = "README.md"
dependencies = [
"click>=8.3.0",
"jinja2>=3.1.6",
"systemrdl-compiler~=1.32.1",
]
authors = [
{ name = "lowRISC contributors"},
]
[project.scripts]
rdl2ot = "rdl2ot.cli:main"
[project.urls]
Homepage = "https://github.com/lowrisc/benevisrdl"
Issues = "https://github.com/lowrisc/benevisrdl/issues"
Documentation = "https://github.com/lowrisc/benevisrdl"
[project.entry-points."peakrdl.exporters"]
rdl2ot = "rdl2ot.__peakrdl__:Exporter"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
include = ["src"]
reportMissingImports = "error"
reportMissingTypeStubs = false
venv = ".venv"
executionEnvironments = [
{ root = "src" },
]
[tool.hatch.build.targets.wheel]
packages = ["src/rdl2ot", "src/templates"]