feat(python): implement python bindings for all components and solvers

This commit is contained in:
Sepehr
2026-02-21 20:34:56 +01:00
parent 8ef8cd2eba
commit 4440132b0a
310 changed files with 11577 additions and 397 deletions

View File

@@ -0,0 +1,26 @@
[package]
name = "entropyk"
description = "A thermodynamic cycle simulation library with type-safe APIs"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"
keywords = ["thermodynamics", "simulation", "hvac", "refrigeration", "engineering"]
categories = ["science", "simulation"]
[dependencies]
entropyk-core = { path = "../core" }
entropyk-components = { path = "../components" }
entropyk-fluids = { path = "../fluids" }
entropyk-solver = { path = "../solver" }
thiserror = { workspace = true }
petgraph = "0.6"
[dev-dependencies]
approx = "0.5"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--html-in-header", "docs/katex-header.html"]