Revision b303288a7377c06d9360905bcd3538ba30c8e052 authored by Breakthrough on 22 January 2024, 03:03:59 UTC, committed by Breakthrough on 22 January 2024, 03:03:59 UTC
1 parent 6ecd86b
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-2023 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