forked from dremio/dremio-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (49 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
53 lines (49 loc) · 1.21 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
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dremioai"
version = "0.1.0"
description = "Foundation for llm integration with Dremio"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"aiohttp>=3.12.15",
"beeai-framework>=0.1.8",
"black>=25.1.0",
"click>=8.1.8",
"fastapi>=0.115.11",
"langchain>=0.3.20",
"langchain-core>=0.3.41",
"langchain-mcp-adapters>=0.1.7",
"langchain-ollama>=0.2.3",
"langchain-openai>=0.3.7",
"langgraph>=0.3.12",
"launchdarkly-server-sdk>=9.15.0",
"mcp>=1.9.4",
"multidict>=6.4.0",
"openai>=1.65.3",
"pandas>=2.2.3",
"pandas-stubs==2.3.0.250703",
"prometheus-client>=0.22.1",
"prompt-toolkit>=3.0.50",
"pydantic>=2.10.6",
"pydantic-settings>=2.8.1",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"rich>=13.9.4",
"sqlglot>=26.23.0",
"starlette>=0.46.1",
"structlog>=25.1.0",
"typer>=0.15.2",
"uvicorn>=0.34.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["dremioai*"]
[project.scripts]
dremio-mcp-server = "dremioai.servers.mcp:cli"