forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (61 loc) · 1.87 KB
/
setup.cfg
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
[metadata]
name = scenedetect
version = attr: scenedetect.__version__
license = BSD 3-Clause License
author = Brandon Castellano
author_email = [email protected]
description = Video scene cut/shot detection program and Python library.
long_description = file: dist/package-info.rst
long_description_content_type = text/x-rst
url = https://www.scenedetect.com
project_urls =
Homepage = https://www.scenedetect.com
Repository = https://github.com/Breakthrough/PySceneDetect/
Documentation = https://www.scenedetect.com/docs/
Bug Tracker = https://github.com/Breakthrough/PySceneDetect/issues/
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: Console :: Curses
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Intended Audience :: System Administrators
License :: OSI Approved :: MIT License
Operating System :: OS Independent
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
Topic :: Multimedia :: Video
Topic :: Multimedia :: Video :: Conversion
Topic :: Multimedia :: Video :: Non-Linear Editor
Topic :: Utilities
keywords = video computer-vision analysis
[options]
install_requires =
Click
numpy
platformdirs
tqdm
packages =
scenedetect
scenedetect._cli
scenedetect._thirdparty
scenedetect.backends
scenedetect.detectors
python_requires = >=3.7
[options.extras_require]
opencv = opencv-python
opencv-headless = opencv-python-headless
pyav = av
moviepy = moviepy
[options.entry_points]
console_scripts =
scenedetect = scenedetect.__main__:main
[aliases]
test = pytest
[tool:pytest]
addopts = --verbose
python_files = tests/*.py