-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 1.42 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "video2ai"
version = "0.1.1"
description = "Convert video to AI-ingestable format (frames + transcript + LLM analysis)"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "Sameep Rehlan" },
]
keywords = ["video", "ai", "transcription", "frames", "whisper", "apple-vision", "ocr"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: MacOS X",
"Intended Audience :: Developers",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Video",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"openai-whisper",
"Pillow",
"numpy",
"flask",
]
[project.optional-dependencies]
vision = [
"pyobjc-framework-Vision",
"pyobjc-framework-CoreML",
"pyobjc-framework-Quartz",
]
[project.urls]
Homepage = "https://github.com/sameeeeeeep/video2ai"
Repository = "https://github.com/sameeeeeeep/video2ai"
Issues = "https://github.com/sameeeeeeep/video2ai/issues"
[project.scripts]
video2ai = "video2ai.cli:main"
[tool.setuptools.packages.find]
include = ["video2ai*"]