make_p4_shelve.py #1

  • //
  • guest/
  • chris_stoy/
  • p4_shelve/
  • make_p4_shelve.py
  • View
  • Commits
  • Open Download .zip Download (776 B)
#----------------------------------------------------------------------------
# py2exe setup script for making stand-alone EXEs
#
#   $Id: $
#
# Usage: python make_p4_shelve.py py2exe
#----------------------------------------------------------------------------

from distutils.core import setup
import py2exe

setup(
    options = {"py2exe": {"compressed": 1,
                          "optimize": 2,
                          "ascii": 1,
                          "bundle_files": 1}},
    zipfile = None,
    console=["p4_shelve.py"]
    )

setup(
    options = {"py2exe": {"compressed": 1,
                          "optimize": 2,
                          "ascii": 1,
                          "bundle_files": 1}},
    zipfile = None,
    console=["p4_unshelve.py"]
    )
# Change User Description Committed
#1 5208 Chris Stoy First version of these files.
 Provides the shelve, unshelve, and setup script for making stand-alone Exes.

Requires P4Python to run.