Your question has really two parts...

First you will need some GUI library with Python bindings and then (if you want) some program that will convert your python scripts into standalone executables.

**Cross-platform GUI libraries with Python bindings (Windows, Linux, Mac)**

Of course, there are many, but the most popular that I've seen in wild are:

  - [WxPython][1] - based on [WxWidgets][2] (very popular, free to also for commercial projects)
  - [PyQt][3] - based on [Qt][4] (also very popular and more stable than WxWidgets but costly license for commercial projects)

Also you can find complete list on [http://wiki.python.org/moin/GuiProgramming][5]

**Single executable (Windows)**

- [py2exe][6] - Probably the most popular out there (there is one more that is good too but can't recall its name)


  [1]: http://www.wxpython.org/
  [2]: http://www.wxwidgets.org/
  [3]: http://www.riverbankcomputing.co.uk/news
  [4]: http://trolltech.com/products/qt/
  [5]: http://wiki.python.org/moin/GuiProgramming
  [6]: http://www.py2exe.org/