mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-28 01:54:42 +00:00
Added py2exe option to package pysqlite
This commit is contained in:
parent
1a3f9d6fba
commit
f44deb85c4
1 changed files with 4 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -64,10 +64,13 @@ from distutils.core import Distribution
|
|||
AppVersion = "5.1"
|
||||
AppName = "LinkChecker"
|
||||
|
||||
# py2exe options for windows .exe packaging
|
||||
py2exe_options = dict(
|
||||
packages=["encodings"],
|
||||
excludes=['doctest', 'unittest', 'optcomplete', 'Tkinter'],
|
||||
includes=["sip"],
|
||||
# add sip so that PyQt4 works
|
||||
# add PyQt4.QtSql so that sqlite neede by QHelpCollection works
|
||||
includes=["sip", "PyQt4.QtSql"],
|
||||
compressed=1,
|
||||
optimize=2,
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue