mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 10:26:33 +00:00
20 lines
491 B
TOML
20 lines
491 B
TOML
[package]
|
|
name = "candle-pyo3"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
description = "PyO3 bindings for the candle ML framework."
|
|
repository = "https://github.com/LaurentMazare/candle"
|
|
keywords = ["blas", "tensor", "machine-learning"]
|
|
categories = ["science"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
name = "candle"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
candle = { path = "../candle-core", default-features=false }
|
|
pyo3 = { version = "0.19.0", features = ["extension-module"] }
|