forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (56 loc) · 2.05 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
#!/usr/bin/env python
#
# PySceneDetect setup.py
#
import glob
import sys
from setuptools import setup
if sys.version_info < (2, 6) or (3, 0) <= sys.version_info < (3, 3):
print('PySceneDetect requires at least Python 2.6 or 3.3 to run.')
sys.exit(1)
def get_requires():
requires = ['numpy']
if sys.version_info == (2, 6):
requires += ['argparse']
return requires
setup(
name='PySceneDetect',
version='0.3.6',
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='[email protected]',
url='https://github.com/Breakthrough/PySceneDetect',
license="BSD 2-Clause",
keywords="video computer-vision analysis",
install_requires=get_requires(),
extras_require={
#'GUI': ['gi'],
#'VIDEOENC': ['moviepy']
},
packages=['scenedetect'],
package_data={'': ['../LICENSE*', '../USAGE.md', '../package-info.rst']},
#include_package_data = True, # Only works with this line commented.
#test_suite="unitest.py",
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.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Video',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Multimedia :: Video :: Non-Linear Editor',
'Topic :: Utilities'
]
)