chore: scaffold python desktop app

This commit is contained in:
王鹏
2026-07-08 17:18:12 +08:00
parent f3b79cad9e
commit 2b5c9c950f
6 changed files with 101 additions and 0 deletions

27
pyproject.toml Normal file
View File

@@ -0,0 +1,27 @@
[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"]