cx-freeze

Create standalone executables from python scripts
  http://cx-freeze.sourceforge.net
  0
  no reviews



Cx_freeze is an application which allows you to freeze python code into executable files, in a way similar to how py2exe and py2app work.

there are three different ways how you can use cx_freeze:
* use the included cxfreeze command which works well for simple scripts.
* create a distutils setup script which can be used for more complicated
configurations or to retain the configuration for future use.
* work directly with the classes and modules used internally by cx_freeze;
this should be reserved for complicated scripts, extending or embedding.