Some checks are pending
Deploy to Production / deploy (push) Waiting to run
- Upgrade pykrx 1.2.3 → 1.2.6 (KRX login session support) - Add KRX_ID/KRX_PW env vars for KRX authentication - Enhance error handling in all pykrx-dependent collectors - ETFCollector: raise KRXDataError with login hint - ValuationCollector: raise RuntimeError with login hint - StockCollector/PriceCollector/ETFPriceCollector: JSONDecodeError handling - Fix TIGER 200 ticker: 069500 → 102110 in seed data - Rebuild seed_data.py from actual 33 trade records - Add trade_history_raw.csv as source data - Fix pension_allocation recommendation: KODEX 200 → TIGER 200 - Add ticker dropdown to transaction add modal (frontend) - Update .env.example with KRX credentials - All 276 tests passing
40 lines
845 B
TOML
40 lines
845 B
TOML
[project]
|
|
name = "galaxis-po-backend"
|
|
version = "1.0.0"
|
|
description = "Galaxis Portfolio Optimization Backend"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi==0.128.2",
|
|
"uvicorn[standard]==0.40.0",
|
|
"sqlalchemy==2.0.46",
|
|
"alembic==1.18.3",
|
|
"psycopg2-binary==2.9.10",
|
|
"pydantic[email]==2.12.5",
|
|
"pydantic-settings==2.12.0",
|
|
"PyJWT[crypto]==2.11.0",
|
|
"passlib[bcrypt]==1.7.4",
|
|
"bcrypt==4.2.1",
|
|
"python-multipart==0.0.22",
|
|
"apscheduler==3.11.2",
|
|
"setuptools",
|
|
"pykrx>=1.2.6",
|
|
"requests==2.32.5",
|
|
"beautifulsoup4==4.14.3",
|
|
"lxml==6.0.2",
|
|
"pandas==2.3.3",
|
|
"numpy==1.26.4",
|
|
"httpx==0.28.1",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest==8.3.4",
|
|
"pytest-asyncio==1.1.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest==8.3.4",
|
|
"pytest-asyncio==1.1.0",
|
|
]
|