Files
Grid_Trading/pyproject.toml
2026-07-08 17:18:12 +08:00

28 lines
505 B
TOML

[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "grid-trading"
version = "0.1.0"
description = "Local A-share and ETF grid trading management GUI"
requires-python = ">=3.11"
dependencies = [
"PySide6>=6.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
]
[project.scripts]
grid-trading = "grid_trading.app:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]