-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (43 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
47 lines (43 loc) · 1.48 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinx-peakrdl"
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"systemrdl-compiler >= 1.29.0",
"peakrdl-cli >= 1.3.0",
"peakrdl-html >= 2.11.0",
"sphinx >= 1.8",
"myst-parser >= 1.0",
]
authors = [
{name="Alex Mykyta"},
]
description = "SphinxDocs extension to insert CSR register documentation using PeakRDL"
readme = "README.md"
license = {text = "LGPLv3"}
keywords = [
"SystemRDL", "PeakRDL", "CSR", "compiler", "tool", "registers", "generator",
"Verilog", "SystemVerilog", "register abstraction layer",
"FPGA", "ASIC",
]
classifiers = [
#"Development Status :: 5 - Production/Stable",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
[project.urls]
Source = "https://github.com/SystemRDL/sphinx-peakrdl"
Tracker = "https://github.com/SystemRDL/sphinx-peakrdl/issues"
Changelog = "https://github.com/SystemRDL/sphinx-peakrdl/releases"
Documentation = "https://sphinx-peakrdl.readthedocs.io/"
[tool.setuptools.dynamic]
version = {attr = "sphinx_peakrdl.__about__.__version__"}