tags:

views:

12

answers:

0

I use Py2exe to package a Python application with quite a few dependant packages. While Py2exe works flawlessly the resulting dist/ folder with the executable contains a large number (10-15) of support files (.dll, .pyd, .zip).

Ideally I would like to be able to place all of these dependant files in a folder called support/ or lib/ or something to that effect. This way when people download the application and extract the archive they are only presented with an executable and some folders.

Does Py2exe support placing dependant files in a sub-folder? If so, how can one accomplish this.