Consolidate Python ignore rules into root gitignore

This commit is contained in:
Hiroaki86
2026-05-27 23:01:28 +09:00
commit fa3394415d
399 changed files with 509103 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
"""MT5/bat互換のH1エントリー候補生成入口。"""
from __future__ import annotations
import sys
from pathlib import Path
def main() -> None:
"""src配下のH1エントリー候補生成パイプラインを起動する。"""
src_path = Path(__file__).resolve().parent / "src"
if str(src_path) not in sys.path:
sys.path.insert(0, str(src_path))
from ea_py.pipelines.entry_pipeline import main as run_main
run_main()
if __name__ == "__main__":
main()