openrag/sdks/mcp/pyproject.toml
2025-12-26 14:21:03 -05:00

34 lines
906 B
TOML

[project]
name = "openrag-mcp"
version = "0.1.1"
description = "MCP server for OpenRAG - Chat, Search, and Ingest documents"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "OpenRAG Team" }]
keywords = ["mcp", "openrag", "rag", "ai", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"openrag-sdk>=0.1.0",
]
[project.scripts]
openrag-mcp = "openrag_mcp:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/openrag_mcp"]