-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.05 KB
/
pyproject.toml
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
40
41
42
43
44
45
46
47
48
49
[project]
name = "video-editor-mcp"
version = "0.1.14"
description = "Video Jungle MCP Server for Adding, Analysing, Searching, and Editing Videos"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"einops>=0.8.0",
"manim>=0.18.1",
"mcp>=1.0.0",
"numpy>=2.2.2",
"opentimelineio>=0.17.0",
"osxphotos>=0.69.2",
"pillow>=11.0.0",
"requests>=2.32.3",
"thefuzz>=0.22.1",
"timm>=1.0.12",
"torch>=2.5.1",
"transformers>=4.47.1",
"videojungle>=0.1.40",
]
homepage = "/~https://github.com/burningion/video-editing-mcp"
[[project.authors]]
name = "Kirk Kaiser"
email = "kirk@zothcorp.com"
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[tool.uv.workspace]
members = ["tools"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"manim>=0.18.1",
"mcp[cli]===1.2.0rc1",
"pre-commit>=4.0.1",
"ruff>=0.8.4",
]
[project.scripts]
video-editor-mcp = "video_editor_mcp:main"
[project.urls]
Homepage = "/~https://github.com/burningion/video-editing-mcp"
Issues = "/~https://github.com/burningion/video-editing-mcp/issues"