forked from Breakthrough/DVR-Scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
67 lines (61 loc) · 2.15 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 = dvr-scan
version = attr: dvr_scan.__version__
license = BSD 2-Clause License
author = Brandon Castellano
author_email = [email protected]
description = Tool for finding and extracting motion events in video files (e.g. security camera footage).
long_description = file: dist/package-info.rst
long_description_content_type = text/x-rst
url = https://dvr-scan.readthedocs.io/
project_urls =
Homepage = https://dvr-scan.readthedocs.io/
Repository = https://github.com/Breakthrough/DVR-Scan
Documentation = https://dvr-scan.readthedocs.io/en/latest/guide/examples/
Bug Tracker = https://github.com/Breakthrough/DVR-Scan/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
Topic :: Multimedia :: Video
Topic :: Multimedia :: Video :: Conversion
Topic :: Multimedia :: Video :: Non-Linear Editor
Topic :: Utilities
keywords = video computer-vision analysis
[options]
install_requires =
platformdirs
numpy
scenedetect
screeninfo
tqdm
packages =
dvr_scan
dvr_scan.cli
python_requires = >=3.7
# TODO: This is required to include the LICENSE file in the correct location, which also
# requires keeping duplicate copies of the LICENSE file in the dvr_scan/ module folder.
# Figure out a better solution, e.g. either access it from the dist-info folder, figure
# out how to include out-of-tree files into the dvr_scan/ module folder during packaging.
include_package_data = True
[options.extras_require]
opencv = opencv-python
opencv-headless = opencv-python-headless
[options.entry_points]
console_scripts =
dvr-scan = dvr_scan.__main__:main
[aliases]
test = pytest
[tool:pytest]
addopts = --verbose
python_files = tests/*.py