Skip to content

Instantly share code, notes, and snippets.

@driscollis
Created June 26, 2017 13:42
Show Gist options
  • Save driscollis/a508a7f3626a156fc4398f3ddf40204a to your computer and use it in GitHub Desktop.
Save driscollis/a508a7f3626a156fc4398f3ddf40204a to your computer and use it in GitHub Desktop.
Boomslang sample setup.py for py2exe
import py2exe
from distutils.core import setup
packages = ['lxml', 'wx.lib.pubsub']
options = {'py2exe': {'packages': packages},
}
setup(
options = options,
windows = ['main.py']
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment