Fixed Windows install dependencies

This commit is contained in:
Mark Qvist 2024-11-26 14:46:01 +01:00
parent 10b073d1c2
commit 32b6fd0a81
1 changed files with 2 additions and 2 deletions

View File

@ -108,10 +108,10 @@ setuptools.setup(
"ffpyplayer",
"sh",
"numpy<=1.26.4",
"pycodec2;sys.platform!='Windows' and sys.platform!='darwin'",
"pycodec2;sys.platform!='Windows' and sys.platform!='win32' and sys.platform!='darwin'",
"pyaudio;sys.platform=='linux'",
"pyobjus;sys.platform=='darwin'",
"pyogg;sys.platform=='Windows'",
"pyogg;sys.platform=='Windows' and sys.platform!='win32'",
],
python_requires='>=3.7',
)