Forgive me if I misunderstood the question, but AFAIK py2exe still does not work for Python 3.5. My understanding is that Python 3.5 changed compilers used on Windows and various packages require some effort to do the same and work for 3.5. py2exe is one of them.
···
On Thursday, September 1, 2016 at 3:35:09 PM UTC-7, Boštjan Mejak wrote:
My setup.py script is simple. When I ran py2exe using
python setup.py py2exe, the dist folder/directory is created, but is empty.
Please note that I am on Windows10 Home 64-bit, if that helps to clear the matter.
This are my setup.py contents:
from distutils.core import setup
import py2exe
setup(name=“Playground”,
version=“1.0”,
author=“Boštjan Mejak”,
license=“GPLv3”,
windows=[{“script”: “playground.py”,
“icon_resources”: [(0, “icon.ico”)]}])
And yes, I do have the icon.ico file in the same folder/directory as the setup.py script.
So what gives? Why do I get an empty dist folder/directory?