-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.85 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sharp-frames"
dynamic = ["version"]
description = "Extract, score, and select the best frames from a video or image directory"
readme = "README.md"
authors = [
{name = "Reflct.app", email = "info@reflct.app"}
]
license = {text = "MIT"}
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Graphics",
"Intended Audience :: End Users/Desktop",
]
keywords = ["video", "frames", "sharpness", "image-processing"]
dependencies = [
"opencv-python>=4.5.0",
"numpy>=1.19.0",
"tqdm>=4.64.0",
"textual>=0.41.0",
]
[project.urls]
Homepage = "https://github.com/reflct/sharp-frames-python"
Documentation = "https://github.com/reflct/sharp-frames-python#readme"
Changelog = "https://github.com/reflct/sharp-frames-python/blob/main/CHANGELOG.md"
[project.scripts]
sharp-frames = "sharp_frames.sharp_frames:main"
# External dependencies that cannot be installed automatically by pip
[tool.sharp-frames.external-dependencies]
ffmpeg = {description = "Required for video processing", url = "https://ffmpeg.org/download.html"}
ffprobe = {description = "Recommended for video duration detection (included with FFmpeg)", url = "https://ffmpeg.org/download.html"}
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.dynamic]
version = {attr = "sharp_frames.__version__"}
[tool.setuptools.packages.find]
include = ["sharp_frames", "sharp_frames.*"]