forked from acryldata/mcp-server-datahub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (59 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
70 lines (59 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "mcp-server-datahub"
dynamic = ["version"]
description = "A Model Context Protocol (MCP) server for DataHub"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"acryl-datahub>=1.3.1.7",
"asyncer>=0.0.8",
"cachetools>=5.0.0",
"fastmcp>=2.10.5",
"jmespath~=1.0.1",
"loguru",
"pydantic>=2.0,<2.12",
"json-repair",
"google-re2",
]
license = "Apache-2.0"
[dependency-groups]
dev = [
"anyio>=4.9.0",
"mypy>=1.15.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.21.0",
"ruff>=0.11.6",
"types-cachetools",
"types-jmespath~=1.0.1",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
[project.urls]
"Source" = "https://github.com/acryldata/mcp-server-datahub"
"Documentation" = "https://docs.datahub.com/docs/features/feature-guides/mcp"
[project.scripts]
mcp-server-datahub = "mcp_server_datahub.__main__:main"
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_file = "src/mcp_server_datahub/_version.py"
fallback_version = "0.0.0"
local_scheme = "no-local-version"
[tool.ruff]
extend-exclude = [
"src/mcp_server_datahub/_version.py", # Generated by setuptools-scm
]
[tool.mypy]
# Exclude shared tests that use datahub_integrations imports
# These work via conftest.py compatibility shim but mypy can't see it
exclude = [
"^tests/test_mcp/",
]
[tool.uv]
cache-keys = [{ file = "pyproject.toml" }, { git = true }]
#[tool.uv.sources]
#acryl-datahub = { path = "../datahub/metadata-ingestion", editable = true }