-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 840 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (36 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lightrag_mcp"
dynamic = ["version"]
description = "MCP Server for LightRAG"
requires-python = ">=3.11"
readme = "README.md"
authors = [
{name = "Arjun Earthperson", email = "mail@earthperson.org"},
]
dependencies = [
"mcp>=1.26.0",
"httpx>=0.28.1",
"pydantic>=2.11",
"python-dotenv>=1.0.1",
"attrs>=25.3.0"
]
[project.optional-dependencies]
dev = [
"mypy>=1.5.0",
"ruff>=0.11.4",
"pytest>=8.2.0",
"pytest-cov>=5.0.0"
]
[project.scripts]
lightrag-mcp = "lightrag_mcp.main:main"
[tool.hatch.version]
path = "src/lightrag_mcp/__init__.py"
[tool.hatch.build]
sources = ["src"]
[tool.hatch.build.targets.wheel]
packages = ["lightrag_mcp"]
[tool.hatch.build.targets.sdist]
include = ["src/lightrag_mcp/**"]