mirror of
https://codeberg.org/LibrEDA/libreda-python
synced 2026-05-29 00:21:40 +08:00
32 lines
805 B
TOML
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"
|