Metadata-Version: 2.4
Name: tsst-sino-backtest-v2
Version: 0.2.0
Summary: Add your description here
Author-email: Aiaristosit <aiaristosit@gmail.com>
Project-URL: Homepage, https://tsst.docs.aiaristos.com/
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: build>=1.2.2.post1
Requires-Dist: cython>=3.1.1
Requires-Dist: ipython>=8.18.1
Requires-Dist: jinja2>=3.1.6
Requires-Dist: nanoid>=2.0.0
Requires-Dist: polars>=1.29.0
Requires-Dist: pyarrow>=20.0.0
Requires-Dist: python-dotenv>=1.1.0
Requires-Dist: quantstats-lumi>=0.1.12
Requires-Dist: requests>=2.32.3
Requires-Dist: rich>=14.0.0
Requires-Dist: setuptools>=80.9.0
Requires-Dist: shioaji[speed]>=1.2.5
Requires-Dist: pyproject_hooks; sys_platform == "darwin" or sys_platform == "linux"
Requires-Dist: tomli; sys_platform == "darwin" or sys_platform == "linux"
Requires-Dist: packaging; sys_platform == "darwin" or sys_platform == "linux"
Requires-Dist: cryptography>=45.0.4
Dynamic: license-file

# TSST 回測模組 Version 2
與第一版的差異在於，第一版將整個回測模組抽出來包成 exe
而這一版的是改用 Cython 撰寫主要的驗證模組與入口模組，最後打包成 pyd 後再讓使用者使用
並且棄用 Redis 改用 Queue 與執行緒進行程式間的訊號溝通

## 打包指令
```bash
# 生成 pyd 放在 example 下，主要用於測試
python setup.py build_ext --build-lib  example --inplace
```

```bash
# 包成 wheel 檔
python -m build
```
