Updated setup file to stop ignoring our local Microsoft redistributable files

This commit is contained in:
Manuel Cortez 2021-09-22 09:00:41 -05:00
parent 3013f34c19
commit 59133a08c5

View File

@ -4,7 +4,7 @@ import application
import platform
import os
import languageHandler
from cx_Freeze import setup, Executable
from cx_Freeze import setup, Executable, winmsvcr
from babel.messages import frontend as babel
languageHandler.setLanguage("en")
@ -47,6 +47,10 @@ executables = [
Executable('main.py', base=base, targetName="socializer")
]
# Empty list of files to be copied, as this might cause conflicts with microsoft's redistributable packages we have already in the repo.
winmsvcr.FILES = ()
winmsvcr.FILES_TO_DUPLICATE = ()
setup(name='Socializer',
version=application.version,
description=application.description,