Files
Wim Pomp 9374c5e261
CI / wheels (push) Successful in 7m21s
CI / Release (push) Failing after 35s
try publish to pypi from CI
2026-04-18 15:31:36 +02:00

30 lines
805 B
TOML

[package]
name = "kmeans_rs"
version = "0.1.0"
edition = "2024"
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"