1
0
Fork 0
mirror of synced 2024-05-18 03:22:42 +12:00

fix: patch up some holes here and there

This commit is contained in:
ffqq 2023-07-16 20:40:25 +03:00
parent f38c751d43
commit be62f22916
4 changed files with 4 additions and 0 deletions

View file

@ -29,6 +29,7 @@ pywin32 = { version = "^304", markers = "platform_system == 'Windows'" }
pywebview = [
{ version = "^3.6.3", extras = ["cef"], platform = "windows", optional = true },
{ version = "^3.6.3", extras = ["gtk"], platform = "linux", optional = true },
{ version = "^3.6.3", extras = ["gtk"], platform = "freebsd", optional = true },
]
legendary-gl = "^0.20.32"
typing-extensions = "^4.3.0"

View file

@ -6,6 +6,7 @@ setuptools
legendary-gl
pywin32; platform_system == "Windows"
pywebview[qt]; platform_system == "Linux"
pywebview[qt]; platform_system == "FreeBSD"
pythonnet>=3.0.0rc4; platform_system == "Windows"
cefpython3; platform_system == "Windows"
pywebview[cef]; platform_system == "Windows"

View file

@ -1,4 +1,5 @@
pywebview[qt]; platform_system == "Linux"
pywebview[qt]; platform_system == "FreeBSD"
pythonnet>=3.0.0rc4; platform_system == "Windows"
cefpython3; platform_system == "Windows"
pywebview[cef]; platform_system == "Windows"

View file

@ -19,6 +19,7 @@ requirements = [
optional_reqs = dict(
webview=[
'pywebview[gtk]; platform_system == "Linux"',
'pywebview[gtk]; platform_system == "FreeBSD"',
'pywebview[cef]; platform_system == "Windows"',
],
pypresence=["pypresence"]