Files
libreda-python/Cargo.toml
2025-10-12 16:08:34 +00:00

32 lines
805 B
TOML

# SPDX-FileCopyrightText: 2022 Thomas Kramer <code@tkramer.ch>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
[package]
name = "libreda-python"
version = "0.0.4"
authors = ["Thomas Kramer <code@tkramer.ch>"]
edition = "2021"
license = "AGPL-3.0-or-later"
description = "Python binding for the LibrEDA database."
keywords = ["vlsi", "python"]
readme = "README.md"
homepage = "https://libreda.org"
repository = "https://codeberg.org/libreda/libreda-python"
[lib]
name = "libreda"
crate-type = ["cdylib"]
[dependencies.pyo3]
version = "0.26"
features = ["extension-module"]
[dependencies]
libreda-db = { path = "../libreda-db" }
libreda-structural-verilog = { path = "../libreda-structural-verilog" }
libreda-oasis = { path = "../libreda-oasis" }
[package.metadata.maturin]
python-source = "python-src"