-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
45 lines (39 loc) · 1.1 KB
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
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "splunk-docs-mcp"
version = "0.1.0"
description = "MCP server for Splunk documentation — ES, Enterprise, Cloud, SOAR, Lantern (FTS5 + semantic search)"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.0.0,<2",
"httpx>=0.27.0",
"beautifulsoup4>=4.12.0",
"lxml>=5.2.0",
"trafilatura>=2.0.0,<3",
"markdownify>=0.13.0",
"sentence-transformers>=5.0.0,<6",
"defusedxml>=0.7.0",
"numpy>=1.26.0",
"sqlite-vec>=0.1.9",
]
[project.scripts]
splunk-mcp = "splunk_docs_mcp.server:run"
splunk-crawl = "splunk_docs_mcp.cli:main"
splunk-setup = "splunk_docs_mcp.setup:main"
splunk-merge = "splunk_docs_mcp.merge:main"
splunk-discover-versions = "splunk_docs_mcp.discover:main"
[tool.hatch.build.targets.wheel]
packages = ["src/splunk_docs_mcp"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"ruff>=0.6.0",
]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]