Revision c028a081782e1f2d50dd37c1725279eb7e25efe9 authored by Breakthrough on 13 March 2024, 01:54:30 UTC, committed by Breakthrough on 13 March 2024, 01:54:30 UTC
1 parent fbd5e0a
Raw File
setup.py
#!/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://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")
back to top