-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (26 loc) · 785 Bytes
/
Cargo.toml
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
26
27
28
29
30
[package]
name = "mixturs-python"
version = "0.1.0"
authors = ["Egor Dmitriev"]
description = "Unofficial implementation of Dirichlet Process Mixture Model Split/Merge algorithm"
keywords = ["probability", "statistics", "stats", "clustering", "math"]
categories = ["science", "computer-vision", "mathematics"]
documentation = "https://docs.rs/mixturs/"
homepage = "https://github.com/EgorDm/mixturs"
repository = "https://github.com/EgorDm/mixturs"
license = "MIT"
edition = "2021"
resolver = "2"
readme = "../README.md"
[lib]
name = "mixtupy"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies.mixturs]
version = "0.1.0"
[dependencies.pyo3]
version = "0.17"
features = ["extension-module", "multiple-pymethods"]
[dependencies.numpy]
version = "0.17"
features = ["nalgebra"]