-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 loc) · 902 Bytes
/
pyproject.toml
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
[project]
name = "mcp-server-sql-analyzer"
version = "0.1.0"
description = "SQL analyzer server for MCP"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"mcp>=1.2.0",
"sqlglot>=26.2.1",
"pydantic>=2.10.6",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_sql_analyzer"]
[project.scripts]
mcp-server-sql-analyzer = "mcp_server_sql_analyzer:main"
[tool.ruff]
line-length = 88
indent-width = 4
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
ignore = []
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false
[dependency-groups]
dev = [
"pytest>=8.3.4",
]
lint = [
"ruff>=0.9.3",
]