forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
115 lines (97 loc) · 4.04 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# PySceneDetect: Python-Based Video Scene Detector
# ---------------------------------------------------------------
# [ Site: http://www.bcastell.com/projects/PySceneDetect/ ]
# [ Github: https://github.com/Breakthrough/PySceneDetect/ ]
# [ Documentation: http://pyscenedetect.readthedocs.org/ ]
#
# Copyright (C) 2014-2020 Brandon Castellano <http://www.bcastell.com>.
#
""" PySceneDetect setup.py
To install PySceneDetect:
python setup.py install
To run the PySceneDetect unit tests (requires testvideo.mp4, link below):
python setup.py test
You can obtain the required testvideo.mp4 from the PySceneDetect [resources
branch](https://github.com/Breakthrough/PySceneDetect/tree/resources) on Github,
or the following URL:
https://raw.githubusercontent.com/Breakthrough/PySceneDetect/resources/tests/testvideo.mp4
"""
# Standard Library Imports
import sys
from setuptools import setup
# TODO: Come up with plan/time for deprecation of Python 2.7.
if sys.version_info < (2, 7) or (sys.version_info >= (3, 0) and sys.version_info < (3, 3)):
print('PySceneDetect 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. """
return [
'Click',
'numpy',
'tqdm'
]
def get_extra_requires():
# type: () -> Dict[str, List[str]]
""" Get Extra Requires: Returns a list of extra/optional packages. """
return {
# TODO: Abstract this into a function that generates this
# dictionary based on a list of compatible Python & opencv-python
# package versions (will need to use the output for requirements.txt).
# TODO: Is there a tool that can do this automagically?
'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='scenedetect',
version='0.5.4.1',
description="A cross-platform, OpenCV-based video scene detection program and Python library. ",
long_description=open('package-info.rst').read(),
author='Brandon Castellano',
author_email='brandon248@gmail.com',
url='https://github.com/Breakthrough/PySceneDetect',
license="BSD 3-Clause",
keywords="video computer-vision analysis",
install_requires=get_requires(),
extras_require=get_extra_requires(),
setup_requires=['pytest-runner'],
tests_require=['pytest'],
packages=['scenedetect',
'scenedetect.cli',
'scenedetect.detectors',
'scenedetect.thirdparty'],
package_data={'': ['../LICENSE', '../USAGE.md', '../package-info.rst']},
#include_package_data = True, # Must leave this to the default.
#test_suite="unitest.py", # Auto-detects tests from setup.cfg
entry_points={"console_scripts": ["scenedetect=scenedetect: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',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Multimedia :: Video :: Non-Linear Editor',
'Topic :: Utilities'
]
)