34 lines
654 B
TOML
34 lines
654 B
TOML
[project]
|
|
name = "lightrag-mcp"
|
|
version = "0.1.0"
|
|
description = "MCP server for LightRAG Server API"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name = "LightRAG MCP" }
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.27.0",
|
|
"mcp>=1.2.0",
|
|
"pydantic>=2.6.0",
|
|
"pydantic-settings>=2.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
lightrag-mcp = "lightrag_mcp.server:main"
|
|
lightrag-mcp-smoke = "lightrag_mcp.smoke:main"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E", "F", "I", "B"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["lightrag_mcp"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling>=1.20.0"]
|
|
build-backend = "hatchling.build"
|