mcp-video-editor/pyproject.toml
Ryan Malloy d635bbc3e5 Initial MCP Video Editor implementation with FastMCP 2.0
Features:
- Professional video recording with session management
- Multi-clip concatenation with transitions
- Video trimming, speed control, and overlay support
- Audio mixing and video-audio synchronization
- Branding and logo overlay capabilities
- Multi-resolution export optimization
- Format conversion with quality presets
- Startup script for easy MCP client integration

Built with FastMCP 2.0, MoviePy, and modern Python tooling
2025-09-05 02:37:32 -06:00

45 lines
939 B
TOML

[project]
name = "mcp-video-editor"
version = "0.1.0"
description = "MCP Video Editor - Professional video production tools for Model Context Protocol"
authors = [
{name = "MCP Video Editor Team"}
]
dependencies = [
"fastmcp>=2.12.2",
"opencv-python>=4.8.0",
"moviepy>=1.0.3",
"pillow>=10.0.0",
"numpy>=1.24.0",
"ffmpeg-python>=0.2.0",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"ruff>=0.1.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
target-version = "py39"
line-length = 88
[tool.ruff.lint]
select = ["E", "W", "F", "I", "N", "UP", "RUF"]
extend-select = ["I", "N", "UP", "RUF"]
ignore = ["E501", "E722"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[project.scripts]
mcp-video-editor = "mcp_video_editor:main"