first commit

This commit is contained in:
2026-07-16 23:55:16 +09:00
commit 57c07a4e12
40 changed files with 2513 additions and 0 deletions

38
pyproject.toml Normal file
View File

@@ -0,0 +1,38 @@
[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"