2026-06-21 17:56:41 +01:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
|
|
|
build-backend = "maturin"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "backtestingfx"
|
2026-07-05 16:37:12 +01:00
|
|
|
version = "0.1.1"
|
2026-06-21 17:56:41 +01:00
|
|
|
description = "FX backtesting library built in Rust"
|
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
dependencies = ["pandas"]
|
2026-06-21 18:14:03 +01:00
|
|
|
license = { text = "MIT" }
|
|
|
|
|
readme = "README.md"
|
2026-06-21 17:56:41 +01:00
|
|
|
|
2026-07-17 14:54:59 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
|
report = ["plotly>=5"]
|
|
|
|
|
|
2026-06-21 17:56:41 +01:00
|
|
|
[tool.maturin]
|
|
|
|
|
module-name = "backtestingfx._backtestingfx"
|
|
|
|
|
features = ["pyo3/extension-module"]
|
2026-06-21 18:14:03 +01:00
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Repository = "https://github.com/KhizarImran/backtestingfx"
|