[project]
name = "modular-rag-mcp-server"
version = "0.1.0"
description = "A pluggable, observable Modular RAG Server Framework"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
dependencies = [
"pydantic>=2.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0", # Added for config loading
"openai>=1.0.0",
"langchain-text-splitters>=0.0.1",
"chromadb>=0.4.0",
"pypdf>=4.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "-v --strict-markers"
markers = [
"unit: Unit tests",
"integration: Integration tests",
"e2e: End-to-end tests",
]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
ignore_missing_imports = true
disable_error_code = ["import-untyped"]