Excluded modules that hopefully aren't required (can't recall if I tested this)
This commit is contained in:
parent
fc0d2de34f
commit
c74dd89027
1 changed files with 23 additions and 8 deletions
31
setup.py
31
setup.py
|
@ -38,13 +38,28 @@ build_exe_options = {
|
||||||
## "re",
|
## "re",
|
||||||
## "oyoyo",
|
## "oyoyo",
|
||||||
## "ssl"],
|
## "ssl"],
|
||||||
"excludes": ["collections.sys",
|
"excludes": ['collections.sys',
|
||||||
"collections._sre",
|
'collections._sre',
|
||||||
"collections._json",
|
'collections._json',
|
||||||
"collections._locale",
|
'collections._locale',
|
||||||
"collections._struct",
|
'collections._struct',
|
||||||
"collections.array",
|
'collections.array',
|
||||||
"collections._weakref"],
|
'collections._weakref',
|
||||||
|
'PyQt5.QtMultimedia',
|
||||||
|
'PyQt5.QtDBus',
|
||||||
|
'PyQt5.QtDeclarative',
|
||||||
|
'PyQt5.QtHelp',
|
||||||
|
'PyQt5.QtNetwork',
|
||||||
|
'PyQt5.QtSql',
|
||||||
|
'PyQt5.QtSvg',
|
||||||
|
'PyQt5.QtTest',
|
||||||
|
'PyQt5.QtWebKit',
|
||||||
|
'PyQt5.QtXml',
|
||||||
|
'PyQt5.QtXmlPatterns',
|
||||||
|
'PyQt5.phonon',
|
||||||
|
'PyQt5.QtAssistant',
|
||||||
|
'PyQt5.QtDesigner',
|
||||||
|
'PyQt5.QAxContainer',],
|
||||||
"include_files": includefiles,
|
"include_files": includefiles,
|
||||||
"include_msvcr": True
|
"include_msvcr": True
|
||||||
}
|
}
|
||||||
|
@ -94,7 +109,7 @@ bdist_msi_options = {'data': msi_data,
|
||||||
'keywords': "Pesterchum"},
|
'keywords': "Pesterchum"},
|
||||||
'upgrade_code': "{86740d75-f1f2-48e8-8266-f36395a2d77f}",
|
'upgrade_code': "{86740d75-f1f2-48e8-8266-f36395a2d77f}",
|
||||||
'add_to_path': False, # !!!
|
'add_to_path': False, # !!!
|
||||||
'all_users': True,
|
'all_users': False,
|
||||||
'install_icon': "pesterchum.ico"}
|
'install_icon': "pesterchum.ico"}
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
Loading…
Reference in a new issue