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! 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5fe49e06-77e3-4a34-ac25-4f4dbe813964%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to