-
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.17 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (49 loc) · 1.17 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
[project]
name = "mcp-data"
version = "0.1.0"
description = "MCP_DATA: generic MCP server and client for querying databases (SQLite first)."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"boto3>=1.43.34",
"fastapi>=0.137.2",
"httpx>=0.28.1",
"imageio>=2.37.3",
"mcp>=1.28.0",
"numpy>=2.4.6",
"pandas>=3.0.3",
"pillow>=12.2.0",
"plotnine>=0.15.7",
"polars>=1.41.2",
"pyarrow>=24.0.0",
"python-dotenv>=1.2.2",
"scikit-learn>=1.9.0",
"scipy>=1.17.1",
"sf-hamilton>=1.90.0",
"tqdm>=4.68.3",
"uvicorn>=0.49.0",
"langchain>=1.3.10",
"langchain-anthropic>=1.4.6",
"langgraph>=1.2.6",
"pyyaml>=6.0.3",
"langchain-mcp-adapters>=0.3.0",
"duckdb>=1.5.4",
]
[project.scripts]
db-mcp-server = "mcp_data.server.__main__:main"
db-mcp-client = "mcp_data.client.cli:main"
db-mcp-seed = "mcp_data.data.seed:main"
db-mcp-gui = "mcp_data.gui.__main__:_entry"
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
gui = [
"pyside6>=6.11.1",
"matplotlib>=3.8.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_data"]