-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (77 loc) · 2.29 KB
/
Copy pathpyproject.toml
File metadata and controls
86 lines (77 loc) · 2.29 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "video-edit-cli"
version = "0.1.2"
description = "Video editing for AI agents: cut podcasts, make YouTube Shorts with subtitles, sync multicam, master audio — headless, local, open source."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
keywords = [
"video",
"editing",
"ffmpeg",
"agents",
"cli",
"ai-agents",
"claude-code",
"agent-skills",
"youtube-shorts",
"podcast-editing",
"subtitles",
"transcription",
"whisper",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Multimedia :: Video :: Conversion",
]
dependencies = [
"jsonschema>=4.21",
"pyyaml>=6",
]
[project.optional-dependencies]
mlx = ["mlx-whisper>=0.4"]
df = [
"deepfilternet>=0.5; python_version < '3.13'",
"soundfile>=0.12; python_version < '3.13'",
"torch>=2.2,<2.3; python_version < '3.13'",
"torchaudio>=2.2,<2.3; python_version < '3.13'",
]
[project.scripts]
video-edit-cli = "video_editor.cli:main"
[project.urls]
Repository = "https://github.com/computerlovetech/video-edit-cli"
Issues = "https://github.com/computerlovetech/video-edit-cli/issues"
[dependency-groups]
dev = [
"pytest>=8",
"ruff>=0.15.20",
"ty>=0.0.57",
]
docs = [
"mkdocs-llmstxt>=0.5.0",
"mkdocs-material>=9.5",
]
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/video_editor"]
# Ship the user-facing agent skills inside the package (playwright-cli pattern):
# the canonical copies stay in the repository-root skills/ directory, and only
# the listed skills are bundled. Development-only skills must not be added here.
[tool.hatch.build.targets.wheel.force-include]
"skills/video-edit-cli" = "video_editor/skills/video-edit-cli"
[tool.hatch.build.targets.sdist]
include = ["src", "skills", "tests", "README.md", "pyproject.toml"]
[tool.pytest.ini_options]
markers = [
"integration: requires real local model backends (deselected by default)",
]
addopts = "-m 'not integration'"