fix product name

This commit is contained in:
porcelaincode
2026-01-28 14:53:10 +05:30
parent f6c60d7b8b
commit b367cdb275
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -2,8 +2,8 @@
name = "raptorbt" name = "raptorbt"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
description = "High-performance Rust backtesting engine for quant5" description = "High-performance Rust backtesting engine for Quant5"
authors = ["quant5 team"] authors = ["Quant5 team"]
license = "MIT" license = "MIT"
[lib] [lib]
+2 -2
View File
@@ -475,7 +475,7 @@ config.set_risk_reward_target(ratio=2.0) # 2:1 risk-reward ratio
## Python Integration ## Python Integration
RaptorBT integrates seamlessly with the quant5 golf runner through `rpbt.py`. RaptorBT integrates seamlessly with the Quant5 golf runner through `rpbt.py`.
### Enable RaptorBT ### Enable RaptorBT
@@ -777,7 +777,7 @@ EOF
## License ## License
RaptorBT is proprietary software developed for the quant5 platform. RaptorBT is proprietary software developed for the Quant5 platform.
--- ---
+1 -1
View File
@@ -5,7 +5,7 @@ build-backend = "maturin"
[project] [project]
name = "raptorbt" name = "raptorbt"
version = "0.1.0" version = "0.1.0"
description = "High-performance Rust backtesting engine for quant5" description = "High-performance Rust backtesting engine for Quant5"
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"
classifiers = [ classifiers = [
+1 -1
View File
@@ -1,5 +1,5 @@
""" """
RaptorBT - High-performance Rust backtesting engine for quant5. RaptorBT - High-performance Rust backtesting engine for Quant5.
This module provides Python bindings for the Rust-based backtesting engine, This module provides Python bindings for the Rust-based backtesting engine,
offering significant performance improvements over vectorbt: offering significant performance improvements over vectorbt:
+1 -1
View File
@@ -1,7 +1,7 @@
// Suppress warning from PyO3 macro expansion (fixed in newer PyO3 versions) // Suppress warning from PyO3 macro expansion (fixed in newer PyO3 versions)
#![allow(non_local_definitions)] #![allow(non_local_definitions)]
//! RaptorBT - High-performance Rust backtesting engine for quant5. //! RaptorBT - High-performance Rust backtesting engine for Quant5.
//! //!
//! This crate provides a complete backtesting solution with: //! This crate provides a complete backtesting solution with:
//! - Technical indicators (SMA, EMA, RSI, MACD, etc.) //! - Technical indicators (SMA, EMA, RSI, MACD, etc.)