-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (22 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
26 lines (22 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
edition = "2024"
name = "kmedoids"
version = "0.5.4"
authors = ["Erich Schubert <erich.schubert@tu-dortmund.de>", "Lars Lenssen <lars.lenssen@tu-dortmund.de>"]
description = "k-Medoids clustering with the FasterPAM algorithm"
homepage = "https://github.com/kno10/python-kmedoids"
readme = "README.md"
license = "GPL-3.0-or-later"
repository = "https://github.com/kno10/python-kmedoids"
[lib]
name = "kmedoids"
crate-type = ["cdylib"]
[dependencies]
rustkmedoids = { version = "0.5.4", package = "kmedoids", git = "https://github.com/kno10/rust-kmedoids" }
numpy = "0.26"
ndarray = "0.16"
rand = "0.9"
rayon = "1.11"
[dependencies.pyo3]
version = "^0.26"
features = ["extension-module"]