41 lines
938 B
TOML
41 lines
938 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=61.0", "wheel"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "nautilus-dolphin"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "DOLPHIN NG HD Nautilus Trading Components"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"nautilus_trader>=1.200.0",
|
||
|
|
"redis>=5.0.0",
|
||
|
|
"pandas>=2.0.0",
|
||
|
|
"numpy>=1.24.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"pytest>=8.0.0",
|
||
|
|
"pytest-asyncio>=0.21.0",
|
||
|
|
"pytest-cov>=4.0.0",
|
||
|
|
"black>=23.0.0",
|
||
|
|
"mypy>=1.0.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["."]
|
||
|
|
include = ["nautilus_dolphin*"]
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
python_files = ["test_*.py"]
|
||
|
|
python_classes = ["Test*"]
|
||
|
|
python_functions = ["test_*"]
|
||
|
|
pythonpath = ["."]
|
||
|
|
addopts = "-v --tb=short"
|
||
|
|
markers = [
|
||
|
|
"slow: full 55-day backtest regression (~25 min per run). Skip with: pytest -m 'not slow'",
|
||
|
|
]
|