Interesting game, and I loved the music. The controls felt a bit frustrating, and I had to result to spamming every key on my keyboard after a while, but I suppose that's intentional.
I had a couple problems. My antivirus (Avast) saw the file as a major threat (probably because it thinks .SevenPillars.exe is the file extension and not the name), and I couldn't play it until I changed the name. This was more a fault on my end, so just a warning to anyone with the same problem.
I also had a problem with closing the program, as the red quit button didn't seem to work. This used to happen to me with pygame as well, but I found that you can fix it by adding this code:
import sys
and in your events (assuming you're doing it like that):
if event.type == pygame.QUIT: pygame.display.quit() pygame.quit() sys.exit()
(Also this is just a personal thing but cx_freeze is really good for converting pygame to exe :wink:)