-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 918 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
[project]
name = "wzrd"
version = "0.1.0"
description = "VJ projection mapping utilities - image/video processing for creature extraction"
authors = [{ name = "Xander Steenbrugge" }]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pillow>=10.0.0",
"numpy>=2.2.0",
"opencv-python>=4.8.0,<4.11.0", # 4.11+ lacks wheels for newer macOS
]
[project.optional-dependencies]
# For color-region extraction (islands module uses KMeans)
islands = ["scikit-learn>=1.3.0"]
# MCP server layer
mcp = [
"fastmcp>=3.0",
"httpx>=0.27",
"uvicorn>=0.30",
"boto3>=1.34",
"python-dotenv>=1.0",
"modal>=0.73",
"fal-client>=0.5",
]
modal = [
"fastmcp>=3.0",
"httpx>=0.27",
"boto3>=1.34",
"modal>=0.73",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["wzrd", "wzrd_mcp"]