Use Pyinstaller.
After installing it, open terminal in the directory where your project resides.
$ pyinstaller script1.py script2.py ...
(where script1, script2, etc. are all the scripts used in your project.)
After command is completed, open dist
folder and enter the subdirectory. There you'll find an executable.
Hope it helps.