[package]
edition = "2021"
rust-version = "1.89"
name = "ta-py"
version = "0.1.0"
authors = ["TA-Lib Rust Contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Python bindings for technical analysis indicators"
readme = false
keywords = [
"python",
"pyo3",
"technical-analysis",
"trading",
"indicators",
]
categories = [
"api-bindings",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/XMethues/fast-ta"
resolver = "3"
[package.metadata.maturin]
name = "ta_py"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "ta_py"
crate-type = ["cdylib"]
path = "src/lib.rs"
test = false
[dependencies.fast-ta]
version = "0.2.2"
[dependencies.numpy]
version = "0.29.0"
[dependencies.pyo3]
version = "0.29.0"
features = ["extension-module"]
[build-dependencies.pyo3-build-config]
version = "0.29.0"