[project] name = "artifacts-dashboard-backend" version = "0.1.0" description = "Backend for Artifacts MMO Dashboard & Automation Platform" requires-python = ">=3.12" dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.34.0", "httpx>=0.28.0", "sqlalchemy[asyncio]>=2.0.36", "asyncpg>=0.30.0", "alembic>=1.14.0", "pydantic>=2.10.0", "pydantic-settings>=2.7.0", "websockets>=14.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.24.0", "pytest-httpx>=0.35.0", "ruff>=0.8.0", "mypy>=1.13.0", "httpx[http2]>=0.28.0", ] [tool.ruff] target-version = "py312" line-length = 100 [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.mypy] python_version = "3.12" strict = false warn_return_any = true warn_unused_configs = true