My setup.py
does not work for me. When I execute it at a command prompt it says:
error:no commands supplied
.
Here I leave the code:
# -*- coding: utf-8 -*-
from distutils.core import setup
import py2exe
setup(name="Vivete",
version="1.0",
author_email="email del autor",
url="url del proyecto",
scripts=["Vivete.py"],
console=["Vivete.py"],
options={"py2exe": {"bundle_files": 1}},
zipfile=None,
)
Any suggestions I appreciate.