Files
PeakRDL-python-regmap/pyproject.toml
Byron Lathi b43de9206b
All checks were successful
build / test (3.10) (push) Successful in 6s
build / test (3.11) (push) Successful in 6s
build / test (3.12) (push) Successful in 6s
build / test (3.13) (push) Successful in 6s
build / test (3.9) (push) Successful in 6s
build / lint (push) Successful in 7s
build / mypy (push) Successful in 8s
build / test (3.10) (release) Successful in 6s
build / test (3.11) (release) Successful in 6s
build / test (3.12) (release) Successful in 6s
build / test (3.13) (release) Successful in 6s
build / test (3.9) (release) Successful in 6s
build / lint (release) Successful in 8s
build / mypy (release) Successful in 8s
build / Build distributions (push) Successful in 7s
build / Build distributions (release) Successful in 8s
build / deploy (push) Has been skipped
build / deploy (release) Successful in 6s
Create project
2025-11-23 17:05:27 -08:00

51 lines
1.5 KiB
TOML

[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "peakrdl-python-regmap"
dynamic = ["version"]
requires-python = ">=3.7"
dependencies = [
"systemrdl-compiler ~= 1.31",
"jinja2",
]
authors = [
{name="Byron Lathi"},
]
description = "Generate Python address map from a SystemRDL register model"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
"SystemRDL", "PeakRDL", "CSR", "compiler", "tool", "registers", "generator",
"Python", "software",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"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.optional-dependencies]
cli = [
"peakrdl-cli >= 1.2.3",
]
[project.urls]
Source = "https://git.byronlathi.com/bslathi19/PeakRDL-python"
Tracker = "https://git.byronlathi.com/bslathi19/PeakRDL-python/issues"
Changelog = "https://git.byronlathi.com/bslathi19/PeakRDL-python/releases"
#Documentation = "https://peakrdl-python.readthedocs.io/"
[tool.setuptools.dynamic]
version = {attr = "peakrdl_python_regmap.__about__.__version__"}
[project.entry-points."peakrdl.exporters"]
python = "peakrdl_python_regmap.__peakrdl__:Exporter"