forked from microsoft/fabric-rti-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (77 loc) · 2.09 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (77 loc) · 2.09 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
86
87
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "microsoft-fabric-rti-mcp"
dynamic = ["version"]
description = "Microsoft Fabric RTI MCP"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Development Status :: 2 - Pre-Alpha",
]
dependencies = [
"httpx~=0.28.1",
"fastmcp~=2.5.0",
"azure-kusto-data~=5.0.0",
"azure-identity~=1.23.0",
"azure-kusto-ingest~=5.0.0",
"msal~=1.32.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.5",
"ruff>=0.14.10",
"ty",
]
[project.scripts]
microsoft-fabric-rti-mcp = "fabric_rti_mcp.server:main"
[project.urls]
Homepage = "https://github.com/microsoft/fabric-rti-mcp"
Repository = "https://github.com/microsoft/fabric-rti-mcp"
Issues = "https://github.com/microsoft/fabric-rti-mcp/issues"
Documentation = "https://github.com/microsoft/fabric-rti-mcp#readme"
[tool.setuptools]
packages = ["fabric_rti_mcp"]
[tool.setuptools.package-data]
fabric_rti_mcp = ["bin/*"]
[tool.ruff]
# Allow lines to be as long as 120.
line-length = 120
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = [
"B904", # Within an `except` clause, raise exceptions with `raise
"B905", # `zip()` without an explicit `strict=` parameter
"SIM102", # Use a single `if` statement instead of nested `if` statements
"E501", # line too long
"B024", # `Component` is an abstract base class, but it has no abstract methods or properties
"UP031", # Use format specifiers instead of percent format
"SIM105", # Use `contextlib.suppress(ValueError)` instead of `try`-`except`-`pass`
]
[tool.setuptools_scm]
write_to = "fabric_rti_mcp/_version.py"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.14.10",
"ty",
]