[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "ai-chatbot-backend" version = "0.1.0" description = "Agentic multimodal RAG customer service backend" requires-python = ">=3.11" license = { text = "MIT" } authors = [{ name = "You" }] [tool.setuptools.packages.find] where = ["."] include = ["app*"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] python_files = ["test_*.py"] addopts = "-v --tb=short" [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP", "B", "C4", "SIM"] ignore = ["E501"] [tool.mypy] python_version = "3.11" strict = true ignore_missing_imports = true