1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-27 13:44:14 +01:00

setup: need to include _cffi_backend when we build_exe

need to do this according to cx_freeze#581
This commit is contained in:
Johan Andersson 2020-03-28 01:04:19 +01:00
parent 800d406f78
commit 81cb18f463

View File

@ -64,6 +64,6 @@ setup(
"Topic :: Utilities",
],
# cx_freeze info for Windows builds with Python embedded
options={"build_exe": {"packages": ["cffi", "cryptography", "idna", "queue"]}},
options={"build_exe": {"packages": ["cffi", "cryptography", "idna", "queue"], "includes": "_cffi_backend"}},
executables=[Executable("bin/svtplay-dl", base=None)],
)