Created
June 26, 2017 13:42
-
-
Save driscollis/a508a7f3626a156fc4398f3ddf40204a to your computer and use it in GitHub Desktop.
Boomslang sample setup.py for py2exe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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