feat(python): implement python bindings for all components and solvers
This commit is contained in:
26
crates/entropyk/Cargo.toml
Normal file
26
crates/entropyk/Cargo.toml
Normal 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"]
|
||||
Reference in New Issue
Block a user