[project]
name = "lenny-rag-mcp"
version = "1.0.0"
description = "MCP server for hierarchical RAG over Lenny Rachitsky podcast transcripts"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"chromadb>=0.4.0",
"sentence-transformers>=2.2.0",
"mcp>=1.0.0",
]
[project.optional-dependencies]
rebuild = [
"ollama>=0.1.0",
]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.scripts]
lenny-server = "src.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
select = ["E", "F", "I", "W"]