Files
The-Ouroboros/pyproject.toml
agentson 63fa6841a2
Some checks failed
CI / test (pull_request) Has been cancelled
feat: dashboard background thread with CLI flag (issue #97)
Add --dashboard CLI flag and DASHBOARD_ENABLED env var to start
FastAPI dashboard in a daemon thread alongside the trading loop.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 00:01:29 +09:00

44 lines
827 B
TOML

[project]
name = "the-ouroboros"
version = "0.1.0"
description = "Evolutionary AI Trading Agent for KIS"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.9,<4",
"pydantic>=2.5,<3",
"pydantic-settings>=2.1,<3",
"google-genai>=1.0,<2",
"scipy>=1.11,<2",
"fastapi>=0.110,<1",
"uvicorn>=0.29,<1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9",
"pytest-asyncio>=0.23,<1",
"pytest-cov>=5.0,<6",
"ruff>=0.5,<1",
"mypy>=1.10,<2",
]
[project.scripts]
ouroboros = "src.main:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true