Remove unused Python modules from installer.
This commit is contained in:
parent
132b811185
commit
25707e9e9a
4
setup.py
4
setup.py
|
@ -45,7 +45,9 @@ MyEmail = "calvin@users.sourceforge.net"
|
||||||
# py2exe options for windows .exe packaging
|
# py2exe options for windows .exe packaging
|
||||||
py2exe_options = dict(
|
py2exe_options = dict(
|
||||||
packages=["encodings"],
|
packages=["encodings"],
|
||||||
excludes=['doctest', 'unittest', 'Tkinter', '_ssl', 'pdb', 'inspect'],
|
excludes=['doctest', 'unittest', 'Tkinter', '_ssl', 'pdb',
|
||||||
|
'email', 'calendar', 'ftplib', 'httplib', 'pickle', 'optparse',
|
||||||
|
'rfc822'],
|
||||||
# silence py2exe error about not finding msvcp90.dll
|
# silence py2exe error about not finding msvcp90.dll
|
||||||
dll_excludes=['MSVCP90.dll'],
|
dll_excludes=['MSVCP90.dll'],
|
||||||
compressed=1,
|
compressed=1,
|
||||||
|
|
Loading…
Reference in New Issue