I'm hacking an existing python tool (using Tkinter GUI) that has a setup.py written for windows (its dependencies include py2exe and Tix) the import statement has
from distutils.core import setup
import py2exe
import os
import glob
setup(console=['mainFileName.py'],...
and under data_files=[...
it includes a lot of .dll files i'm guessing it doesn't need if it compiles on linux. I can run the tool if I just call python mainFileName.py
but I'm not sure how do deal with it in the setup.py file
thanks!