forj-python 0.1.1

Python bindings for the Forj SystemVerilog tools
Documentation
[package]
name = "forj-python"
description = "Python bindings for the Forj SystemVerilog tools"
version = "0.1.1"
authors = ["Aidan McNay <aidanmcnay@gmail.com>"]
edition = "2024"
license = "Apache-2.0"
repository = "https://github.com/Aidan-McNay/forj"
readme = "../README.md"
keywords = ["systemverilog"]

[lib]
name = "forj_python"
# "cdylib" is necessary to produce a shared library for Python to import from.
crate-type = ["cdylib"]

[dependencies]
forj-parser = { version = "0.1.0", path = "../forj-parser" }
forj-syntax = { version = "0.1.0", path = "../forj-syntax" }
yansi = "1.0.1"

[dependencies.pyo3]
version = "0.29.0"
# "abi3-py38" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.8
features = ["abi3-py38", "experimental-inspect"]