-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathsetup.cfg
More file actions
78 lines (73 loc) · 2.42 KB
/
setup.cfg
File metadata and controls
78 lines (73 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# DVR-Scan: Video Motion Event Detection & Extraction Tool
# --------------------------------------------------------------
# [ Site: https://www.dvr-scan.com/ ]
# [ Repo: https://github.com/Breakthrough/DVR-Scan ]
#
# Copyright (C) 2016 Brandon Castellano <http://www.bcastell.com>.
#
[metadata]
name = DVR-Scan
version = attr: dvr_scan.__version__
license = BSD 2-Clause License
author = Brandon Castellano
author_email = brandon248@gmail.com
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://www.dvr-scan.com/
project_urls =
Homepage = https://www.dvr-scan.com/
Repository = https://github.com/Breakthrough/DVR-Scan
Documentation = https://www.dvr-scan.com/docs
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.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Multimedia :: Video
Topic :: Multimedia :: Video :: Conversion
Topic :: Multimedia :: Video :: Non-Linear Editor
Topic :: Utilities
keywords = video computer-vision analysis
[options]
install_requires =
numpy
platformdirs
scenedetect
screeninfo
tqdm
# TODO(#257): Unpin OpenCV versions once we figure out why frame numbers are mismatching in tests.
opencv-contrib-python<4.13
pillow
packages =
# Main application
dvr_scan
dvr_scan.app
dvr_scan.shared
# Documentation (minified HTML without images to keep package download size small)
dvr_scan.docs
dvr_scan.docs.assets
dvr_scan.docs.assets.javascripts
dvr_scan.docs.assets.stylesheets
python_requires = >=3.10
include_package_data = True
[options.entry_points]
console_scripts =
dvr-scan = dvr_scan.__main__:main
dvr-scan-app = dvr_scan.app.__main__:main
[aliases]
test = pytest
[tool:pytest]
addopts = --verbose
python_files = tests/*.py