Hello Everybody,
I need to create an exe file from a desktop application (using qt) and adwords api. I'm using python to develop that.
The problem is, when I create the exe file with cx_freeze, my application doesn't works because of adwords api.
is there any solution to package adwords api using cx_freeze? My setup.py file is like:
# coding=utf-8
from cx_Freeze import setup, Executable
from glob import glob
from sys import platform
base = None
if platform == "win32":
base = "Win32GUI"
setup(
name='',
version='0.1',
description='',
author='',
author_email='',
options={'build_exe': {'includes': ['re', 'PySide', 'googleads']}},
executables=[Executable('main.py', base=base)],
requires=['PySide', 'googleads', 'json', 'subprocess', 'threading', 'PySide.QtNetwork', 'QtWebKit', 'sip',
'cx_Freeze']
)
Thanks you!