2018-12-16 23:25:44 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2019-11-15 17:46:36 -06:00
|
|
|
import sys
|
2016-02-21 08:17:12 -06:00
|
|
|
import application
|
|
|
|
import platform
|
2019-11-15 17:46:36 -06:00
|
|
|
import os
|
2019-11-19 17:33:56 -06:00
|
|
|
from cx_Freeze import setup, Executable
|
2020-02-28 15:41:14 -06:00
|
|
|
from babel.messages import frontend as babel
|
2016-02-21 08:17:12 -06:00
|
|
|
|
2019-11-19 17:32:37 -06:00
|
|
|
def find_sound_lib_datafiles():
|
|
|
|
import os
|
|
|
|
import platform
|
|
|
|
import sound_lib
|
|
|
|
path = os.path.join(sound_lib.__path__[0], 'lib')
|
|
|
|
if platform.architecture()[0] == '32bit' or platform.system() == 'Darwin':
|
|
|
|
arch = 'x86'
|
|
|
|
else:
|
|
|
|
arch = 'x64'
|
|
|
|
dest_dir = os.path.join('sound_lib', 'lib', arch)
|
|
|
|
source = os.path.join(path, arch)
|
|
|
|
return (source, dest_dir)
|
|
|
|
|
|
|
|
def find_accessible_output2_datafiles():
|
|
|
|
import os
|
|
|
|
import accessible_output2
|
|
|
|
path = os.path.join(accessible_output2.__path__[0], 'lib')
|
|
|
|
dest_dir = os.path.join('accessible_output2', 'lib')
|
|
|
|
return (path, dest_dir)
|
|
|
|
|
2019-11-15 17:46:36 -06:00
|
|
|
base = None
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
base = 'Win32GUI'
|
2016-02-21 08:17:12 -06:00
|
|
|
|
2019-11-15 17:46:36 -06:00
|
|
|
build_exe_options = dict(
|
|
|
|
build_exe="dist",
|
2019-12-03 10:34:34 -06:00
|
|
|
optimize=1,
|
2019-11-15 17:46:36 -06:00
|
|
|
include_msvcr=True,
|
2019-11-19 17:32:37 -06:00
|
|
|
zip_include_packages=["accessible_output2", "sound_lib", "arrow"],
|
2020-05-07 17:17:07 -05:00
|
|
|
replace_paths = [("*", "")],
|
2020-06-14 08:39:43 -05:00
|
|
|
include_files=["session.defaults", "cacert.pem", "app-configuration.defaults", "locales", "sounds", "documentation", "../windows-dependencies/x86/oggenc2.exe", "../windows-dependencies/x86/bootstrap.exe", "../windows-dependencies/dictionaries", find_sound_lib_datafiles(), find_accessible_output2_datafiles(), ("../windows-dependencies/msvc32", "."), ("../windows-dependencies/dictionaries", "lib/enchant/data/mingw32/share/enchant/hunspell")],
|
2019-11-19 17:32:37 -06:00
|
|
|
packages=["interactors", "presenters", "views", "wxUI"],
|
2019-11-15 17:46:36 -06:00
|
|
|
)
|
2016-02-21 08:17:12 -06:00
|
|
|
|
2019-11-15 17:46:36 -06:00
|
|
|
executables = [
|
2019-11-19 17:32:37 -06:00
|
|
|
Executable('main.py', base=base, targetName="socializer")
|
2019-11-15 17:46:36 -06:00
|
|
|
]
|
2016-02-21 08:17:12 -06:00
|
|
|
|
2019-11-15 17:46:36 -06:00
|
|
|
setup(name='Socializer',
|
|
|
|
version=application.version,
|
|
|
|
description=application.description,
|
2020-02-28 15:41:14 -06:00
|
|
|
# Register babel commands in setup file.
|
|
|
|
cmdclass = {'compile_catalog': babel.compile_catalog,
|
|
|
|
'extract_messages': babel.extract_messages,
|
|
|
|
'init_catalog': babel.init_catalog,
|
|
|
|
'update_catalog': babel.update_catalog},
|
|
|
|
message_extractors = {"socializer": [('**.py', 'python', None)]},
|
2019-11-15 17:46:36 -06:00
|
|
|
options = {"build_exe": build_exe_options},
|
|
|
|
executables=executables
|
|
|
|
)
|