├── ANNOUNCE ├── ChangeLog ├── MANIFEST.in ├── README.txt ├── docs ├── LICENSE.txt ├── default.css ├── html.cmd ├── py2exe.jpg ├── py2exe.txt └── updateweb.cmd ├── py2exe ├── __init__.py ├── boot_com_servers.py ├── boot_common.py ├── boot_ctypes_com_server.py ├── boot_service.py ├── build_exe.py ├── mf.py ├── resources │ ├── StringTables.py │ ├── VersionInfo.py │ └── __init__.py └── samples │ ├── advanced │ ├── MyService.py │ ├── icon.ico │ ├── setup.py │ ├── test_wmi.py │ └── test_wx.py │ ├── extending │ ├── setup.py │ └── test_wx.py │ ├── pywin32 │ ├── com_server │ │ ├── README.txt │ │ ├── setup.py │ │ ├── test_interp.py │ │ └── test_interp.vbs │ ├── com_typelib │ │ ├── README.txt │ │ ├── build_gen │ │ │ └── word │ │ │ │ ├── docmaker.py │ │ │ │ └── setup.py │ │ └── pre_gen │ │ │ └── wscript │ │ │ ├── setup.py │ │ │ ├── show_info.py │ │ │ └── wsh-typelib-stubs.py │ └── isapi │ │ ├── README.txt │ │ └── setup.py │ ├── simple │ ├── hello.py │ ├── setup.py │ └── test_wx.py │ ├── singlefile │ ├── comserver │ │ ├── setup.py │ │ ├── setup_client.py │ │ └── test.py │ └── gui │ │ ├── setup.py │ │ └── test_wx.py │ └── user_access_control │ ├── README.txt │ ├── hello.py │ └── setup.py ├── sandbox └── test │ ├── hello.py │ ├── setup.cfg │ ├── setup_all.py │ ├── test_interp.vbs │ └── test_wx.py ├── setup.py ├── source ├── MemoryModule.c ├── MemoryModule.h ├── MyLoadLibrary.c ├── MyLoadLibrary.h ├── Python-dynload.c ├── Python-dynload.h ├── Python-version.h ├── README-MemoryModule.txt ├── _memimporter.c ├── actctx.c ├── actctx.h ├── icon.rc ├── icon1.ico ├── import-tab.c ├── import-tab.h ├── mktab.py ├── py2exe_util.c ├── resource.h ├── run.c ├── run_ctypes_dll.c ├── run_dll.c ├── run_isapi.c ├── run_w.c └── start.c ├── test ├── checkTestModule.py ├── reinstall.cmd ├── relative_import │ ├── __init__.py │ ├── sys.py │ └── x │ │ └── __init__.py ├── setup_noZipFile.py ├── setup_win32com_shell.py ├── test.py ├── test_2+2.py ├── test_EasyDialogs.py ├── test_noZipFile.py ├── test_pysvn.py ├── test_relative_import.py ├── test_sys_path.py ├── test_win32com_shell.py └── test_xml_xpath.py ├── upload └── updateweb.cmd └── zipextimporter.py /ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/ANNOUNCE -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/ChangeLog -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/README.txt -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/docs/default.css -------------------------------------------------------------------------------- /docs/html.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/docs/html.cmd -------------------------------------------------------------------------------- /docs/py2exe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/docs/py2exe.jpg -------------------------------------------------------------------------------- /docs/py2exe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/docs/py2exe.txt -------------------------------------------------------------------------------- /docs/updateweb.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/docs/updateweb.cmd -------------------------------------------------------------------------------- /py2exe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/__init__.py -------------------------------------------------------------------------------- /py2exe/boot_com_servers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/boot_com_servers.py -------------------------------------------------------------------------------- /py2exe/boot_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/boot_common.py -------------------------------------------------------------------------------- /py2exe/boot_ctypes_com_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/boot_ctypes_com_server.py -------------------------------------------------------------------------------- /py2exe/boot_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/boot_service.py -------------------------------------------------------------------------------- /py2exe/build_exe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/build_exe.py -------------------------------------------------------------------------------- /py2exe/mf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/mf.py -------------------------------------------------------------------------------- /py2exe/resources/StringTables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/resources/StringTables.py -------------------------------------------------------------------------------- /py2exe/resources/VersionInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/resources/VersionInfo.py -------------------------------------------------------------------------------- /py2exe/resources/__init__.py: -------------------------------------------------------------------------------- 1 | # package to build resources. 2 | -------------------------------------------------------------------------------- /py2exe/samples/advanced/MyService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/advanced/MyService.py -------------------------------------------------------------------------------- /py2exe/samples/advanced/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/advanced/icon.ico -------------------------------------------------------------------------------- /py2exe/samples/advanced/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/advanced/setup.py -------------------------------------------------------------------------------- /py2exe/samples/advanced/test_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/advanced/test_wmi.py -------------------------------------------------------------------------------- /py2exe/samples/advanced/test_wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/advanced/test_wx.py -------------------------------------------------------------------------------- /py2exe/samples/extending/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/extending/setup.py -------------------------------------------------------------------------------- /py2exe/samples/extending/test_wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/extending/test_wx.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_server/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_server/README.txt -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_server/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_server/setup.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_server/test_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_server/test_interp.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_server/test_interp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_server/test_interp.vbs -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_typelib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_typelib/README.txt -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_typelib/build_gen/word/docmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_typelib/build_gen/word/docmaker.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_typelib/build_gen/word/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_typelib/build_gen/word/setup.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_typelib/pre_gen/wscript/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_typelib/pre_gen/wscript/setup.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_typelib/pre_gen/wscript/show_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_typelib/pre_gen/wscript/show_info.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/com_typelib/pre_gen/wscript/wsh-typelib-stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/com_typelib/pre_gen/wscript/wsh-typelib-stubs.py -------------------------------------------------------------------------------- /py2exe/samples/pywin32/isapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/isapi/README.txt -------------------------------------------------------------------------------- /py2exe/samples/pywin32/isapi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/pywin32/isapi/setup.py -------------------------------------------------------------------------------- /py2exe/samples/simple/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/simple/hello.py -------------------------------------------------------------------------------- /py2exe/samples/simple/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/simple/setup.py -------------------------------------------------------------------------------- /py2exe/samples/simple/test_wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/simple/test_wx.py -------------------------------------------------------------------------------- /py2exe/samples/singlefile/comserver/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/singlefile/comserver/setup.py -------------------------------------------------------------------------------- /py2exe/samples/singlefile/comserver/setup_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/singlefile/comserver/setup_client.py -------------------------------------------------------------------------------- /py2exe/samples/singlefile/comserver/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/singlefile/comserver/test.py -------------------------------------------------------------------------------- /py2exe/samples/singlefile/gui/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/singlefile/gui/setup.py -------------------------------------------------------------------------------- /py2exe/samples/singlefile/gui/test_wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/singlefile/gui/test_wx.py -------------------------------------------------------------------------------- /py2exe/samples/user_access_control/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/user_access_control/README.txt -------------------------------------------------------------------------------- /py2exe/samples/user_access_control/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/user_access_control/hello.py -------------------------------------------------------------------------------- /py2exe/samples/user_access_control/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/py2exe/samples/user_access_control/setup.py -------------------------------------------------------------------------------- /sandbox/test/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/sandbox/test/hello.py -------------------------------------------------------------------------------- /sandbox/test/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/sandbox/test/setup.cfg -------------------------------------------------------------------------------- /sandbox/test/setup_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/sandbox/test/setup_all.py -------------------------------------------------------------------------------- /sandbox/test/test_interp.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/sandbox/test/test_interp.vbs -------------------------------------------------------------------------------- /sandbox/test/test_wx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/sandbox/test/test_wx.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/setup.py -------------------------------------------------------------------------------- /source/MemoryModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/MemoryModule.c -------------------------------------------------------------------------------- /source/MemoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/MemoryModule.h -------------------------------------------------------------------------------- /source/MyLoadLibrary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/MyLoadLibrary.c -------------------------------------------------------------------------------- /source/MyLoadLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/MyLoadLibrary.h -------------------------------------------------------------------------------- /source/Python-dynload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/Python-dynload.c -------------------------------------------------------------------------------- /source/Python-dynload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/Python-dynload.h -------------------------------------------------------------------------------- /source/Python-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/Python-version.h -------------------------------------------------------------------------------- /source/README-MemoryModule.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/README-MemoryModule.txt -------------------------------------------------------------------------------- /source/_memimporter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/_memimporter.c -------------------------------------------------------------------------------- /source/actctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/actctx.c -------------------------------------------------------------------------------- /source/actctx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/actctx.h -------------------------------------------------------------------------------- /source/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/icon.rc -------------------------------------------------------------------------------- /source/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/icon1.ico -------------------------------------------------------------------------------- /source/import-tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/import-tab.c -------------------------------------------------------------------------------- /source/import-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/import-tab.h -------------------------------------------------------------------------------- /source/mktab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/mktab.py -------------------------------------------------------------------------------- /source/py2exe_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/py2exe_util.c -------------------------------------------------------------------------------- /source/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/resource.h -------------------------------------------------------------------------------- /source/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/run.c -------------------------------------------------------------------------------- /source/run_ctypes_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/run_ctypes_dll.c -------------------------------------------------------------------------------- /source/run_dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/run_dll.c -------------------------------------------------------------------------------- /source/run_isapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/run_isapi.c -------------------------------------------------------------------------------- /source/run_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/run_w.c -------------------------------------------------------------------------------- /source/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/source/start.c -------------------------------------------------------------------------------- /test/checkTestModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/checkTestModule.py -------------------------------------------------------------------------------- /test/reinstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/reinstall.cmd -------------------------------------------------------------------------------- /test/relative_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/relative_import/sys.py: -------------------------------------------------------------------------------- 1 | maxint = 12 2 | -------------------------------------------------------------------------------- /test/relative_import/x/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/relative_import/x/__init__.py -------------------------------------------------------------------------------- /test/setup_noZipFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/setup_noZipFile.py -------------------------------------------------------------------------------- /test/setup_win32com_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/setup_win32com_shell.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test.py -------------------------------------------------------------------------------- /test/test_2+2.py: -------------------------------------------------------------------------------- 1 | if __name__ == "__main__": 2 | print 2+2 3 | -------------------------------------------------------------------------------- /test/test_EasyDialogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test_EasyDialogs.py -------------------------------------------------------------------------------- /test/test_noZipFile.py: -------------------------------------------------------------------------------- 1 | if __name__ == "__main__": 2 | print 2+2 3 | -------------------------------------------------------------------------------- /test/test_pysvn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test_pysvn.py -------------------------------------------------------------------------------- /test/test_relative_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test_relative_import.py -------------------------------------------------------------------------------- /test/test_sys_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test_sys_path.py -------------------------------------------------------------------------------- /test/test_win32com_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test_win32com_shell.py -------------------------------------------------------------------------------- /test/test_xml_xpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/test/test_xml_xpath.py -------------------------------------------------------------------------------- /upload/updateweb.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/upload/updateweb.cmd -------------------------------------------------------------------------------- /zipextimporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goatpig/py2exe/HEAD/zipextimporter.py --------------------------------------------------------------------------------