[build-system] requires = ["setuptools>=68", "wheel"] build-backend = "setuptools.build_meta" [project] name = "rinkuzu-ai-api" version = "1.0.0" description = "FastAPI backend for Rinkuzu adaptive learning and content pipeline services." readme = "README.md" requires-python = ">=3.11,<3.14" dependencies = [ "langsmith", ] [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["."] addopts = "-q" [tool.ruff] target-version = "py311" line-length = 100 src = ["api", "tests"] [tool.ruff.lint] select = ["E", "F", "I", "B", "UP"] ignore = ["E501"]