-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (60 loc) · 2.1 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (60 loc) · 2.1 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vidlizer"
version = "0.2.19"
description = "Point it at a video, image, or PDF — get structured JSON. Runs local (Ollama, LM Studio, oMLX) or cloud (OpenRouter). CLI + MCP server for Claude Code, Cursor, and Claude Desktop."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Rizawan Ahmed", email = "ahm.rizawan@gmail.com" }]
keywords = ["video", "analysis", "ai", "vision", "json", "llm", "ollama", "openrouter", "mcp", "ffmpeg", "multimodal", "omlx", "lm-studio", "apple-silicon"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"requests>=2.32",
"python-dotenv>=1.0",
"questionary>=2.0",
"rich>=13.0",
"pymupdf>=1.24",
"yt-dlp>=2024.1",
"mlx-whisper>=0.4; sys_platform == 'darwin'",
]
[project.optional-dependencies]
transcribe = ["mlx-whisper>=0.4"]
mcp = ["mcp>=1.0"]
dev = [
"pytest>=8.0",
"pytest-html>=4.0",
"pytest-mock>=3.12",
]
[project.urls]
Homepage = "https://github.com/arizawan/vidlizer"
Repository = "https://github.com/arizawan/vidlizer"
"Bug Tracker" = "https://github.com/arizawan/vidlizer/issues"
Changelog = "https://github.com/arizawan/vidlizer/releases"
Funding = "https://buymeacoffee.com/arizawan"
Author = "https://arizawan.com"
Company = "https://theatechsolutions.com"
[project.scripts]
vidlizer = "vidlizer.cli:main"
vidlizer-mcp = "vidlizer.mcp.server:main"
[tool.ruff.lint]
ignore = ["E701"] # allow aligned inline-if blocks
[tool.setuptools.packages.find]
where = ["."]
include = ["vidlizer*"]
[tool.setuptools.package-data]
vidlizer = ["env.sample"]