I've finished my first Python program that might have future use for something of importance, (rather than just
print('Hello, world.')
), however, in order to distribute this script I need to convert my script to an executable file so they aren't forced to download Python to view the script in action. However, such programs as py2exe and ExeMaker do not (as of yet) support Python 3.0.1 due to some differences in the code/syntax as I'm sure you all know.
So my question is, how can I convert my Python 3.0.1 .py or .pyc file to an .exe file?