-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (92 loc) · 2.71 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (92 loc) · 2.71 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
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-server-pixeltable-developer"
version = "0.1.0"
description = "MCP server for Pixeltable (Developer version)"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
keywords = ["mcp", "pixeltable", "ai", "data", "multimodal", "machine-learning"]
authors = [
{name = "Identimoji", email = "help@identimoji.io"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
# 0.6.x: pxt.mcp_udfs, FastAPIRouter, return_rows=True, named indexes; matches pixeltable-skill + starter-kit
"pixeltable>=0.6.3",
# FastMCP / Inspector: 1.10+ matches current SDK; loosen if you must support older envs
"mcp[cli]>=1.10.0",
"requests>=2.31.0",
"toml>=0.10.2",
"uvloop>=0.19.0; sys_platform != 'win32'",
]
[project.optional-dependencies]
# Optional browser canvas (display_in_browser tool). Without this extra, canvas startup is skipped.
canvas = [
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
]
test = [
"pytest>=8.0",
]
all = [
"ollama>=0.5.1",
"fireworks-ai>=0.19.0",
"sentence-transformers>=5.0.0",
"torch>=2.0.0",
"torchvision>=0.15.0",
"pixeltable-yolox>=0.4.2",
"transformers>=4.53.2",
"gliner>=0.2.21",
"fastapi>=0.115.0",
"uvicorn>=0.32.0",
]
ml = [
"torch>=2.0.0",
"torchvision>=0.15.0",
"transformers>=4.53.2",
"sentence-transformers>=5.0.0",
]
llm = [
"ollama>=0.5.1",
"fireworks-ai>=0.19.0",
]
vision = [
"pixeltable-yolox>=0.4.2",
]
[project.urls]
"Homepage" = "https://github.com/pixeltable/mcp-server-pixeltable-developer"
"Bug Tracker" = "https://github.com/pixeltable/mcp-server-pixeltable-developer/issues"
[project.scripts]
mcp-server-pixeltable-developer = "mcp_server_pixeltable_stio.__main__:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_pixeltable_stio"]
[tool.hatch.build.targets.wheel.shared-data]
"canvas.html" = "share/mcp-server-pixeltable-developer/canvas.html"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/LICENSE",
"/canvas.html",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
markers = [
"slow: end-to-end smoke tests that initialize a real Pixeltable catalog (opt-in via --run-slow)",
]
filterwarnings = [
"ignore:Field name \"schema\".*shadows.*:UserWarning",
]