mcp-video-editor/pyproject.toml
Ryan Malloy 0d926c626f Fix Python version requirement for FastMCP compatibility
- Update requires-python from >=3.9 to >=3.12
- Update ruff target-version to py312
- FastMCP 2.12.2 requires Python >=3.10
- Using Python 3.12 for better stability and compatibility
2025-09-05 02:44:23 -06:00

45 lines
941 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.12"
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 = "py312"
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"