22 lines
432 B
TOML
22 lines
432 B
TOML
[project]
|
|
name = "granular-backtest"
|
|
version = "0.1.0"
|
|
description = "Granular order-book backtesting tools"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = []
|
|
|
|
[project.scripts]
|
|
book-backtest = "book_backtest.cli:main"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["book_backtest*"]
|
|
exclude = ["lowkey_backtest*"]
|
|
|
|
|