Initial release — OpenMontage: the first open-source agentic video production system
11 production pipelines, 47 tools, 124 agent skills.
Supports cloud APIs (fal.ai, OpenAI, ElevenLabs, Suno, HeyGen, Runway) and
free local providers (diffusers, Piper TTS, WAN 2.1, Hunyuan, CogVideo).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-29 08:25:17 -07:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name="openmontage",
|
|
|
|
|
version="0.1.0",
|
|
|
|
|
description="AI-Orchestrated Video Production Platform",
|
|
|
|
|
packages=find_packages(),
|
|
|
|
|
python_requires=">=3.10",
|
|
|
|
|
install_requires=[
|
|
|
|
|
"pyyaml>=6.0",
|
|
|
|
|
"pydantic>=2.0",
|
|
|
|
|
"jsonschema>=4.20",
|
|
|
|
|
"python-dotenv>=1.0",
|
2026-04-12 07:18:00 -07:00
|
|
|
"Pillow>=10.0",
|
|
|
|
|
"requests>=2.31",
|
2026-07-09 07:16:01 -07:00
|
|
|
"google-genai>=1.0.0",
|
2026-07-01 10:38:00 -07:00
|
|
|
"openai>=2.44.0",
|
Initial release — OpenMontage: the first open-source agentic video production system
11 production pipelines, 47 tools, 124 agent skills.
Supports cloud APIs (fal.ai, OpenAI, ElevenLabs, Suno, HeyGen, Runway) and
free local providers (diffusers, Piper TTS, WAN 2.1, Hunyuan, CogVideo).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-29 08:25:17 -07:00
|
|
|
],
|
|
|
|
|
)
|