39 lines
790 B
TOML
39 lines
790 B
TOML
[project]
|
|
name = "stock-automation"
|
|
version = "0.1.0"
|
|
description = "한국투자증권 API 기반 자동매매 웹앱"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"sqlalchemy>=2.0.0",
|
|
"aiosqlite>=0.20.0",
|
|
"python-kis>=2.1.0",
|
|
"apscheduler>=3.10.0",
|
|
"pandas>=2.2.0",
|
|
"ta>=0.11.0",
|
|
"pydantic-settings>=2.0.0",
|
|
"pyyaml>=6.0.0",
|
|
"python-dotenv>=1.0.0",
|
|
"jinja2>=3.1.0",
|
|
"httpx>=0.27.0",
|
|
"websockets>=13.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0.0",
|
|
"pytest-asyncio>=0.23.0",
|
|
"ruff>=0.5.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py311"
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "N", "W", "UP"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|