-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 953 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "uproot-mcp-server"
version = "0.1.0"
description = "MCP server for uproot-based ROOT file analysis in EIC data analysis workflows"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = [
"mcp>=1.0.0",
"uproot>=5.0.0",
"numpy>=1.26.4",
"awkward>=2.0.0",
"RestrictedPython>=8.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.4",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
]
xrootd = [
"fsspec-xrootd>=0.5.2",
"xrootd>=5.4.0",
]
[project.scripts]
uproot-mcp-server = "uproot_mcp_server.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/uproot_mcp_server"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
addopts = "-v"
[tool.coverage.run]
source = ["uproot_mcp_server"]
omit = ["tests/*"]
[tool.coverage.report]
show_missing = true