feat(python): implement python bindings for all components and solvers
This commit is contained in:
22
bindings/python/Cargo.toml
Normal file
22
bindings/python/Cargo.toml
Normal file
@@ -0,0 +1,22 @@
|
||||
[package]
|
||||
name = "entropyk-python"
|
||||
description = "Python bindings for the Entropyk thermodynamic simulation library"
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
[lib]
|
||||
name = "entropyk"
|
||||
crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
entropyk = { path = "../../crates/entropyk" }
|
||||
entropyk-core = { path = "../../crates/core" }
|
||||
entropyk-components = { path = "../../crates/components" }
|
||||
entropyk-solver = { path = "../../crates/solver" }
|
||||
entropyk-fluids = { path = "../../crates/fluids" }
|
||||
pyo3 = { version = "0.23", features = ["extension-module"] }
|
||||
numpy = "0.23"
|
||||
petgraph = "0.6"
|
||||
Reference in New Issue
Block a user