Initial commit

This commit is contained in:
Rich
2023-12-06 14:24:46 +00:00
commit edf0f5e06a
53 changed files with 3665 additions and 0 deletions

27
pyvidplayer2/setup.py Normal file
View File

@@ -0,0 +1,27 @@
from setuptools import setup
from pyvidplayer2 import _VERSION
with open("README.md", 'r') as f:
long_desc = f.read()
setup(
name="pyvidplayer2",
version=_VERSION,
description="Video playback in Python",
long_description=long_desc,
long_description_content_type = "text/markdown",
author="Anray Liu",
author_email="anrayliu@gmail.com",
license="MIT",
packages=["pyvidplayer2"],
install_requires=["numpy<1.25,>=1.21",
"opencv_python",
"pygame",
"pysubs2",
"PyAudio"],
url="https://github.com/ree1261/pyvidplayer2",
platforms=["windows"],
keywords=["pygame", "video", "playback"],
)