mirror of
https://github.com/KhizarImran/backtestingfx.git
synced 2026-07-27 20:17:44 +00:00
20 lines
453 B
TOML
20 lines
453 B
TOML
[build-system]
|
|
requires = ["maturin>=1.0,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "backtestingfx"
|
|
version = "0.1.0"
|
|
description = "FX backtesting library built in Rust"
|
|
requires-python = ">=3.9"
|
|
dependencies = ["pandas"]
|
|
license = { text = "MIT" }
|
|
readme = "README.md"
|
|
|
|
[tool.maturin]
|
|
module-name = "backtestingfx._backtestingfx"
|
|
features = ["pyo3/extension-module"]
|
|
|
|
[project.urls]
|
|
Repository = "https://github.com/KhizarImran/backtestingfx"
|