-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (72 loc) · 2.03 KB
/
Copy pathpyproject.toml
File metadata and controls
85 lines (72 loc) · 2.03 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "databricks-mcp-server"
version = "0.1.0.dev0"
description = "A safety-first, open-source MCP server for Databricks"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "DatabricksMCP contributors" }]
keywords = ["databricks", "mcp", "model-context-protocol", "ai", "agents"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"databricks-sdk>=0.57.0,<1",
"mcp>=1.9.0,<2",
"sqlglot>=25,<28",
]
[project.urls]
Homepage = "https://github.com/Purvanshsingh/DatabricksMCP"
Documentation = "https://github.com/Purvanshsingh/DatabricksMCP#readme"
Issues = "https://github.com/Purvanshsingh/DatabricksMCP/issues"
[project.scripts]
databricks-mcp = "databricks_mcp.__main__:main"
[dependency-groups]
dev = [
"mypy>=1.16,<2",
"pre-commit>=4.2,<5",
"pytest>=8.4,<9",
"pytest-cov>=6.2,<7",
"ruff>=0.12,<1",
]
[tool.hatch.build.targets.wheel]
packages = ["src/databricks_mcp"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM", "RUF"]
[tool.ruff.format]
quote-style = "double"
[tool.mypy]
python_version = "3.11"
strict = true
packages = ["databricks_mcp"]
[[tool.mypy.overrides]]
module = ["sqlglot.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--strict-config --strict-markers --cov=databricks_mcp --cov-report=term-missing"
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"live: integration tests that require a real Databricks workspace (set DATABRICKS_MCP_LIVE=1)",
]
[tool.coverage.run]
branch = true
omit = [
"src/databricks_mcp/__main__.py",
"src/databricks_mcp/server.py",
]
[tool.coverage.report]
fail_under = 85
show_missing = true