27 lines
732 B
TOML

[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"]
[features]
default = ["coolprop"]
coolprop = ["entropyk-fluids/coolprop"]
[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"