[package]
edition = "2021"
rust-version = "1.70"
name = "sklears-python"
version = "0.1.0-rc.1"
authors = ["COOLJAPAN OU (Team KitaSan)"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Python bindings for sklears machine learning library using PyO3"
homepage = "https://github.com/cool-japan/sklears"
readme = "README.md"
keywords = [
"machine-learning",
"python",
"pyo3",
"scikit-learn",
"bindings",
]
categories = [
"api-bindings",
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/sklears"
[features]
default = ["pandas-integration"]
pandas-integration = ["polars"]
parallel = []
[lib]
name = "sklears_python"
crate-type = ["cdylib"]
path = "src/lib.rs"
[[test]]
name = "lib"
path = "tests/lib.rs"
[[test]]
name = "test_clustering"
path = "tests/test_clustering.rs"
[[test]]
name = "test_linear_regression"
path = "tests/test_linear_regression.rs"
[[test]]
name = "test_metrics"
path = "tests/test_metrics.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.num_cpus]
version = "1.17"
[dependencies.numpy]
version = "0.27"
[dependencies.polars]
version = "0.52"
features = [
"lazy",
"ndarray",
]
optional = true
default-features = false
[dependencies.pyo3]
version = "0.27"
features = [
"extension-module",
"chrono",
"indexmap",
]
[dependencies.rayon]
version = "1.11"
[dependencies.scirs2-autograd]
version = "0.2.0"
default-features = false
[dependencies.scirs2-core]
version = "0.2.0"
features = [
"random",
"linalg",
"serialization",
]
default-features = false
[dependencies.scirs2-linalg]
version = "0.2.0"
default-features = false
[dependencies.serde]
version = "1.0"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.sklears-clustering]
version = "0.1.0-rc.1"
[dependencies.sklears-core]
version = "0.1.0-rc.1"
[dependencies.sklears-datasets]
version = "0.1.0-rc.1"
[dependencies.sklears-ensemble]
version = "0.1.0-rc.1"
[dependencies.sklears-linear]
version = "0.1.0-rc.1"
features = [
"bayesian",
"elastic-net",
"logistic-regression",
]
[dependencies.sklears-metrics]
version = "0.1.0-rc.1"
[dependencies.sklears-model-selection]
version = "0.1.0-rc.1"
[dependencies.sklears-naive-bayes]
version = "0.1.0-rc.1"
[dependencies.sklears-neural]
version = "0.1.0-rc.1"
[dependencies.sklears-tree]
version = "0.1.0-rc.1"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.proptest]
version = "1.7"