Skip to content

Instantly share code, notes, and snippets.

@juntalis
Created October 20, 2012 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juntalis/3922674 to your computer and use it in GitHub Desktop.
Save juntalis/3922674 to your computer and use it in GitHub Desktop.
PyCmd Setup Script Fix Attempt
from cx_Freeze import setup, Executable
from os import path
setup(
name = 'PyCmd',
version = '0.8',
description = 'Smart windows shell',
executables = [
Executable('PyCmd.py',
initScript=path.join(path.abspath(path.dirname(__file__)), 'pycmd_cx_initscript.py')
)
],
options = {
'build_exe': {
'icon': 'PyCmd.ico',
'include_files': ['example-init.py',
'pycmd_public.py'],
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment