24 lines
530 B
TOML
24 lines
530 B
TOML
[project]
|
|
name = "iiot-rag-mcp"
|
|
version = "0.1.0"
|
|
description = "ExperionCrawler Unified MCP Server — RAG + NL2SQL"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mcp[cli]>=1.0.0",
|
|
"qdrant-client>=1.9.0",
|
|
"sentence-transformers>=3.0.0",
|
|
"openai>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
"psycopg[binary]>=3.1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
iiot-rag-mcp = "server:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
only-include = ["server.py", "index_opc_docs.py"]
|