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 = [
|
2026-02-07 11:12:16 +09:00
|
|
|
"fastapi==0.128.2",
|
|
|
|
|
"uvicorn[standard]==0.40.0",
|
|
|
|
|
"sqlalchemy==2.0.46",
|
|
|
|
|
"alembic==1.18.3",
|
2026-02-04 22:26:19 +09:00
|
|
|
"psycopg2-binary==2.9.10",
|
2026-02-07 11:12:16 +09:00
|
|
|
"pydantic[email]==2.12.5",
|
|
|
|
|
"pydantic-settings==2.12.0",
|
|
|
|
|
"PyJWT[crypto]==2.11.0",
|
2026-02-04 22:26:19 +09:00
|
|
|
"passlib[bcrypt]==1.7.4",
|
2026-02-07 11:12:16 +09:00
|
|
|
"bcrypt==4.2.1",
|
|
|
|
|
"python-multipart==0.0.22",
|
|
|
|
|
"apscheduler==3.11.2",
|
2026-02-05 23:24:53 +09:00
|
|
|
"setuptools",
|
2026-02-07 11:12:16 +09:00
|
|
|
"pykrx==1.2.3",
|
|
|
|
|
"requests==2.32.5",
|
|
|
|
|
"beautifulsoup4==4.14.3",
|
|
|
|
|
"lxml==6.0.2",
|
|
|
|
|
"pandas==2.3.3",
|
|
|
|
|
"numpy==1.26.4",
|
2026-02-04 22:26:19 +09:00
|
|
|
"httpx==0.28.1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest==8.3.4",
|
2026-02-07 11:12:16 +09:00
|
|
|
"pytest-asyncio==1.1.0",
|
2026-02-04 22:26:19 +09:00
|
|
|
]
|
|
|
|
|
|
2026-02-07 11:12:16 +09:00
|
|
|
[dependency-groups]
|
|
|
|
|
dev = [
|
2026-02-04 22:26:19 +09:00
|
|
|
"pytest==8.3.4",
|
2026-02-07 11:12:16 +09:00
|
|
|
"pytest-asyncio==1.1.0",
|
2026-02-04 22:26:19 +09:00
|
|
|
]
|