[package]
name = "tch-ext"
version = "0.2.0"
authors = ["Laurent Mazare <lmazare@gmail.com>"]
edition = "2021"
build = "build.rs"
description = "Sample Python extension using tch to interact with PyTorch."
repository = "https://github.com/LaurentMazare/tch-rs"
keywords = ["pytorch", "deep-learning", "machine-learning"]
categories = ["science"]
license = "MIT/Apache-2.0"
readme = "README.md"
[lib]
name = "tch_ext"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.21", features = ["extension-module"] }
pyo3-tch = { path = "../../pyo3-tch", version = "0.18.0" }
tch = { path = "../..", features = ["python-extension"], version = "0.18.0" }
torch-sys = { path = "../../torch-sys", features = ["python-extension"], version = "0.18.0" }