Update startup script for full video processing by default
- Modify startup script to install video dependencies by default - Add MoviePy to main dependencies for easier setup - Ready to test with InterNACHI demo videos once installation completes
This commit is contained in:
parent
d7b56da7c7
commit
daf1c225c2
@ -7,6 +7,7 @@ authors = [
|
||||
]
|
||||
dependencies = [
|
||||
"fastmcp>=2.12.2",
|
||||
"moviepy>=2.2.1",
|
||||
]
|
||||
|
||||
requires-python = ">=3.12"
|
||||
@ -45,4 +46,4 @@ quote-style = "double"
|
||||
indent-style = "space"
|
||||
|
||||
[project.scripts]
|
||||
mcp-video-editor = "mcp_video_editor:main"
|
||||
mcp-video-editor = "mcp_video_editor:main"
|
||||
|
@ -23,8 +23,8 @@ fi
|
||||
|
||||
# Check if dependencies are installed
|
||||
if [ ! -d ".venv" ] && [ ! -f "uv.lock" ]; then
|
||||
echo "📦 Installing dependencies with UV..."
|
||||
uv sync
|
||||
echo "📦 Installing full video processing dependencies with UV..."
|
||||
uv sync --extra video
|
||||
fi
|
||||
|
||||
# Set environment variables for video processing
|
||||
|
Loading…
x
Reference in New Issue
Block a user