[project] name = "guestguard-fraud-engine" version = "0.1.0" description = "GuestGuard fraud detection engine" requires-python = ">=3.11" dependencies = [ "fastapi>=0.115", "uvicorn[standard]>=0.32", "pydantic>=2.9", "pydantic-settings>=2.5", "nats-py>=2.9", "structlog>=24.4", "grpcio>=1.66", "protobuf>=5.28", ] [project.optional-dependencies] dev = [ "pytest>=8.3", "pytest-asyncio>=0.24", "httpx>=0.27", "ruff>=0.7", "grpcio-tools>=1.66", ] [build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["."] include = ["app*", "fraud*"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "B", "UP", "SIM"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]