galaxis-po/backend/pyproject.toml

40 lines
845 B
TOML
Raw Normal View History

2026-02-04 22:26:19 +09:00
[project]
name = "galaxis-po-backend"
2026-02-04 22:26:19 +09:00
version = "1.0.0"
description = "Galaxis Portfolio Optimization Backend"
2026-02-04 22:26:19 +09:00
requires-python = ">=3.12"
dependencies = [
"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",
"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",
"bcrypt==4.2.1",
"python-multipart==0.0.22",
"apscheduler==3.11.2",
"setuptools",
"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",
"pytest-asyncio==1.1.0",
2026-02-04 22:26:19 +09:00
]
[dependency-groups]
dev = [
2026-02-04 22:26:19 +09:00
"pytest==8.3.4",
"pytest-asyncio==1.1.0",
2026-02-04 22:26:19 +09:00
]