2026-05-21 17:50:45 +02:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["maturin>=1.7,<2.0"]
|
|
|
|
|
build-backend = "maturin"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "wickra"
|
2026-06-17 21:14:22 +02:00
|
|
|
version = "0.9.3"
|
2026-05-21 17:50:45 +02:00
|
|
|
description = "Streaming-first technical indicators: incremental, fast, install-free."
|
2026-05-21 20:51:30 +02:00
|
|
|
readme = "README.md"
|
2026-06-03 18:49:39 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2026-05-31 23:22:57 +02:00
|
|
|
authors = [{ name = "kingchenc", email = "support@wickra.org" }]
|
2026-05-21 17:50:45 +02:00
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
keywords = ["finance", "trading", "indicators", "technical-analysis", "ta-lib"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Intended Audience :: Financial and Insurance Industry",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
2026-05-23 10:52:20 +02:00
|
|
|
"Programming Language :: Python :: 3.13",
|
2026-05-21 17:50:45 +02:00
|
|
|
"Programming Language :: Rust",
|
|
|
|
|
"Topic :: Office/Business :: Financial :: Investment",
|
|
|
|
|
"Topic :: Scientific/Engineering :: Mathematics",
|
|
|
|
|
]
|
2026-06-17 03:19:50 +02:00
|
|
|
# Zero third-party runtime dependencies: batch results are stdlib `array.array`
|
|
|
|
|
# objects (and a buffer-protocol `Matrix` for multi-output indicators), so a plain
|
|
|
|
|
# `pip install wickra` pulls nothing else.
|
|
|
|
|
dependencies = []
|
2026-05-21 17:50:45 +02:00
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2026-06-17 03:19:50 +02:00
|
|
|
# Optional NumPy interop. Results expose the buffer protocol, so `numpy.asarray(...)`
|
|
|
|
|
# wraps them zero-copy when NumPy is installed — but it is never required.
|
|
|
|
|
numpy = [
|
|
|
|
|
"numpy>=1.22",
|
|
|
|
|
]
|
2026-05-21 17:50:45 +02:00
|
|
|
test = [
|
|
|
|
|
"pytest>=7",
|
|
|
|
|
"numpy>=1.22",
|
|
|
|
|
"hypothesis>=6",
|
|
|
|
|
]
|
|
|
|
|
bench = [
|
|
|
|
|
"pytest-benchmark>=4",
|
|
|
|
|
"TA-Lib; platform_system != 'Windows'",
|
|
|
|
|
"pandas-ta>=0.3.14b",
|
2026-06-06 20:57:31 +02:00
|
|
|
"tulipy>=0.4; platform_system != 'Windows'",
|
2026-05-21 17:50:45 +02:00
|
|
|
"talipp>=2",
|
|
|
|
|
"finta>=1.3",
|
|
|
|
|
"pandas>=2",
|
|
|
|
|
"numpy>=1.22",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
2026-05-30 12:18:10 +02:00
|
|
|
Homepage = "https://github.com/wickra-lib/wickra"
|
2026-06-11 18:11:54 +02:00
|
|
|
Documentation = "https://docs.wickra.org"
|
2026-05-30 12:18:10 +02:00
|
|
|
Repository = "https://github.com/wickra-lib/wickra"
|
|
|
|
|
Issues = "https://github.com/wickra-lib/wickra/issues"
|
2026-05-21 17:50:45 +02:00
|
|
|
|
|
|
|
|
[tool.maturin]
|
|
|
|
|
manifest-path = "Cargo.toml"
|
|
|
|
|
python-source = "python"
|
|
|
|
|
module-name = "wickra._wickra"
|
|
|
|
|
features = ["pyo3/extension-module"]
|
|
|
|
|
strip = true
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
addopts = "-ra -q"
|
|
|
|
|
filterwarnings = ["error"]
|