I am currently using a windows computer with python 3.4, and have cx_freeze. I've used cx_freeze once before, which turned my .py file into a .exe executable. I've tried to read through the documentation, but I'm very new to python and programming in general and couldn't find my answer.
Is there any way for me to be able to turn a python file containing script into a .app application for macs?
My setup.py currently looks like this:
import sys
from cx_Freeze import setup, Executable
setup(name='One-off',
version='0.1',
description='Random fun.',
executables = [Executable('distme.py')])
Aucun commentaire:
Enregistrer un commentaire