WLD DeepCoin 단계별 구조 재편 및 설정·문서 통합
로고스/루트 레거시를 제거하고 deepcoin 패키지·scripts 01~05 CLI·docs/reference로 데이터·GT·분석·매칭·운영 단계를 정리했다. config와 .env 기반 설정, trade_anaysis.html 동기화 포함. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
14
deepcoin/__init__.py
Normal file
14
deepcoin/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""
|
||||
DeepCoin 패키지 — WLD MTF 분석·정답·운영 단계.
|
||||
"""
|
||||
|
||||
from pathlib import Path
|
||||
import sys
|
||||
|
||||
_PROJECT_ROOT = Path(__file__).resolve().parents[1]
|
||||
if str(_PROJECT_ROOT) not in sys.path:
|
||||
sys.path.insert(0, str(_PROJECT_ROOT))
|
||||
|
||||
from deepcoin.paths import ensure_dirs
|
||||
|
||||
ensure_dirs()
|
||||
Reference in New Issue
Block a user