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

18
README.md Normal file
View File

@@ -0,0 +1,18 @@
# Grid Trading
本项目是一个本地运行的 Python GUI 网格交易管理工具,第一阶段聚焦 A股/ETF 的账户、标的、手工成交、持仓成本、网格收益和回本价计算。
## 开发环境
```powershell
python -m venv .venv
.\.venv\Scripts\Activate.ps1
python -m pip install -e ".[dev]"
pytest
```
## 启动
```powershell
python -m grid_trading.app
```