2026-02-04 22:26:19 +09:00
|
|
|
[project]
|
2026-02-05 23:24:53 +09:00
|
|
|
name = "galaxis-po-backend"
|
2026-02-04 22:26:19 +09:00
|
|
|
version = "1.0.0"
|
2026-02-05 23:24:53 +09:00
|
|
|
description = "Galaxis Portfolio Optimization Backend"
|
2026-02-04 22:26:19 +09:00
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fastapi==0.115.6",
|
|
|
|
|
"uvicorn[standard]==0.34.0",
|
|
|
|
|
"sqlalchemy==2.0.36",
|
|
|
|
|
"alembic==1.14.0",
|
|
|
|
|
"psycopg2-binary==2.9.10",
|
2026-02-05 23:24:53 +09:00
|
|
|
"pydantic[email]==2.10.4",
|
2026-02-04 22:26:19 +09:00
|
|
|
"pydantic-settings==2.7.1",
|
|
|
|
|
"python-jose[cryptography]==3.3.0",
|
|
|
|
|
"passlib[bcrypt]==1.7.4",
|
2026-02-05 23:24:53 +09:00
|
|
|
"bcrypt==4.0.1",
|
2026-02-04 22:26:19 +09:00
|
|
|
"python-multipart==0.0.20",
|
|
|
|
|
"apscheduler==3.10.4",
|
2026-02-05 23:24:53 +09:00
|
|
|
"setuptools",
|
2026-02-04 22:26:19 +09:00
|
|
|
"pykrx==1.0.45",
|
|
|
|
|
"requests==2.32.3",
|
|
|
|
|
"beautifulsoup4==4.12.3",
|
|
|
|
|
"lxml==5.3.0",
|
|
|
|
|
"pandas==2.2.3",
|
|
|
|
|
"numpy==2.2.1",
|
|
|
|
|
"httpx==0.28.1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest==8.3.4",
|
|
|
|
|
"pytest-asyncio==0.25.2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
|
dev-dependencies = [
|
|
|
|
|
"pytest==8.3.4",
|
|
|
|
|
"pytest-asyncio==0.25.2",
|
|
|
|
|
]
|