forked from Breakthrough/DVR-Scan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
99 lines (82 loc) · 3.14 KB
/
setup.py
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# DVR-Scan: Video Motion Event Detection & Extraction Tool
# --------------------------------------------------------------
# [ Site: https://github.com/Breakthrough/DVR-Scan/ ]
# [ Documentation: http://dvr-scan.readthedocs.org/ ]
#
# Copyright (C) 2014-2021 Brandon Castellano <http://www.bcastell.com>.
#
""" DVR-Scan setup.py
To install DVR-Scan:
python setup.py install
To run the DVR-Scan unit tests:
python setup.py test
"""
import sys
from setuptools import setup
if sys.version_info < (2, 7) or (3, 0) <= sys.version_info < (3, 3):
print('DVR-Scan requires at least Python 2.7 or 3.3 to run.')
sys.exit(1)
def get_requires():
# type: () -> List[str]
""" Get Requires: Returns a list of required packages. """
requires = ['numpy', 'tqdm']
return requires
def get_extra_requires():
# type: () -> Dict[str, List[str]]
""" Get Extra Requires: Returns a list of extra/optional packages. """
return {
'opencv:python_version <= "3.5"':
['opencv-python<=4.2.0.32'],
'opencv:python_version > "3.5"':
['opencv-python'],
'opencv-headless:python_version <= "3.5"':
['opencv-python-headless<=4.2.0.32'],
'opencv-headless:python_version > "3.5"':
['opencv-python-headless'],
}
setup(
name='dvr-scan',
version='1.2',
description="Tool for finding and extracting motion events in video files"
"(e.g. security camera footage).",
long_description=open('package-info.rst').read(),
author='Brandon Castellano',
author_email='[email protected]',
url='https://github.com/Breakthrough/DVR-Scan',
license="BSD 2-Clause",
keywords="video computer-vision analysis",
install_requires=get_requires(),
extras_require=get_extra_requires(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=['dvr_scan'],
package_data={'': ['../LICENSE*', '../package-info.rst']},
#include_package_data = True, # Only works with this line commented.
#test_suite="unitest.py",
entry_points={"console_scripts": ["dvr-scan=dvr_scan.__main__:main"]},
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 :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Multimedia :: Video :: Non-Linear Editor',
'Topic :: Utilities'
]
)