Initial commit
This commit is contained in:
27
pyvidplayer2/setup.py
Normal file
27
pyvidplayer2/setup.py
Normal 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"],
|
||||
)
|
||||
Reference in New Issue
Block a user