31 lines
829 B
TOML
31 lines
829 B
TOML
[package]
|
|
name = "kmeans_rs"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
rust-version = "1.94.0"
|
|
authors = ["Wim Pomp <w.pomp@nki.nl>"]
|
|
license = "MIT OR Apache-2.0"
|
|
description = "Python wrapper for Rust kmeans library."
|
|
homepage = "https://git.wimpomp.nl/wim/kmeans_rs"
|
|
repository = "https://git.wimpomp.nl/wim/kmeans_rs"
|
|
readme = "README.md"
|
|
keywords = ["kmeans"]
|
|
categories = ["science"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
name = "kmeans_rs"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
color-eyre = "0.6"
|
|
console = "0.16"
|
|
indicatif = { version = "0.18", features = ["rayon"] }
|
|
kmeans = "2"
|
|
ndarray = "0.17"
|
|
numpy = "0.28"
|
|
pyo3 = { version = "0.28", features = ["abi3-py310", "anyhow", "eyre", "generate-import-lib"] }
|
|
pyo3-stub-gen = "0.22"
|
|
rayon = "1"
|
|
thiserror = "2"
|