[build-system]
requires = ["maturin>=1.9,<2.0"]
build-backend = "maturin"
[project]
name = "rdlfmt"
description = "A formatter for SystemRDL"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT OR Apache-2.0"
license-files = ["LICENSE-MIT", "LICENSE-APACHE"]
keywords = ["systemrdl", "formatter", "eda", "registers", "csr"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Rust",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Software Development :: Quality Assurance",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/fischeti/rdlfmt"
Repository = "https://github.com/fischeti/rdlfmt"
Issues = "https://github.com/fischeti/rdlfmt/issues"
[project.entry-points."peakrdl.exporters"]
fmt = "rdlfmt.__peakrdl__:Formatter"
[tool.maturin]
bindings = "bin"
python-source = "python"