forked from Breakthrough/PySceneDetect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (16 loc) · 638 Bytes
/
setup.py
File metadata and controls
19 lines (16 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
#
# PySceneDetect: Python-Based Video Scene Detector
# ---------------------------------------------------------------
# [ Site: http://www.bcastell.com/projects/PySceneDetect/ ]
# [ Github: https://github.com/Breakthrough/PySceneDetect/ ]
# [ Documentation: http://www.scenedetect.com/docs/ ]
#
# Copyright (C) 2014-2024 Brandon Castellano <http://www.bcastell.com>.
#
"""PySceneDetect setup.py - DEPRECATED.
Build using `python -m build` and installing the resulting .whl using `pip`.
"""
import setuptools
if __name__ == "__main__":
setuptools.setup(name="scenedetect")