[build-system] requires = ["setuptools>=68.0"] build-backend = "setuptools.build_meta" [project] name = "obsidian-rag" version = "0.1.0" description = "RAG indexer for Obsidian vaults — powers OpenClaw's obsidian_rag_* tools" requires-python = ">=3.11" dependencies = [ "lancedb>=0.12", "httpx>=0.27", "pyyaml>=6.0", "python-frontmatter>=1.1", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "pytest-mock>=3.12", "ruff>=0.5", ] [project.scripts] obsidian-rag = "obsidian_rag.cli:main" [tool.setuptools.packages.find] where = ["."] include = ["obsidian_rag*"] [tool.pytest.ini_options] testpaths = ["tests"] pythonpath = ["."] asyncio_mode = "auto"