[project] name = "falzh" version = "0.1.0" description = "AI-powered WhatsApp travel service backend" requires-python = ">=3.12" dependencies = [ "fastapi>=0.115.0", "uvicorn[standard]>=0.30.0", "pydantic-settings>=2.4.0", "supabase>=2.6.0", "openai>=1.40.0", "httpx>=0.27.0", "python-dotenv>=1.0.1", ] [project.optional-dependencies] dev = [ "pytest>=8.3.0", "pytest-asyncio>=0.24.0", "ruff>=0.6.0", ] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] [tool.ruff] line-length = 100 target-version = "py312" exclude = [".deps", ".venv", "__pycache__"] [tool.ruff.lint] select = ["E", "F", "I", "UP", "B", "ASYNC"] ignore = ["B008"]