chore: 프로젝트 초기 설정 및 의존성 추가

Made-with: Cursor
This commit is contained in:
21in7
2026-03-01 12:48:03 +09:00
commit 60b0e01a01
5 changed files with 25 additions and 0 deletions

7
.env.example Normal file
View File

@@ -0,0 +1,7 @@
BINANCE_API_KEY=
BINANCE_API_SECRET=
SYMBOL=XRPUSDT
LEVERAGE=10
RISK_PER_TRADE=0.02
NOTION_TOKEN=
NOTION_DATABASE_ID=

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
.env
__pycache__/
*.pyc
.pytest_cache/
logs/
*.log
.venv/
venv/

10
requirements.txt Normal file
View File

@@ -0,0 +1,10 @@
python-binance==1.0.19
pandas>=2.2.0
pandas-ta==0.4.71b0
python-dotenv==1.0.0
notion-client==2.2.1
pytest>=8.1.0
pytest-asyncio>=0.24.0
aiohttp==3.9.3
websockets==12.0
loguru==0.7.2

0
src/__init__.py Normal file
View File

0
tests/__init__.py Normal file
View File