Add patoolib.programs to windows installer

This commit is contained in:
Bastian Kleineidam 2013-07-19 14:33:22 +02:00
parent 4bc4ccadb2
commit 95c7719e1e
2 changed files with 3 additions and 2 deletions

View File

@ -3,6 +3,7 @@
* Add patoolib.__version__ (see PEP 396).
Closes: GH bug #3
* Improved detection of LZMA and LRZIP files with file(1).
* Add missing patoolib.programs to Windows installer.
1.2 (released 27.6.2013)

View File

@ -59,7 +59,7 @@ py_excludes = ['doctest', 'unittest', 'Tkinter', '_ssl', 'pdb',
]
# py2exe options for Windows packaging
py2exe_options = dict(
packages=["encodings"],
packages=["encodings", 'patoolib.programs'],
excludes=py_excludes,
# silence py2exe error about not finding msvcp90.dll
dll_excludes=['MSVCP90.dll'],
@ -68,7 +68,7 @@ py2exe_options = dict(
)
# cx_Freeze for Linux RPM packaging
cxfreeze_options = dict(
packages=["encodings"],
packages=["encodings", 'patoolib.programs'],
excludes=py_excludes,
)