SOLVED Re: distutils on windows ignoring package_data

2011-05-21 Thread Wilbert Berendsen
Solved: the problem was right there in the packagelist() function, it replaced '/' with dots instead of using os.sep ... I'm very sorry for the noise, although it's surprising everything else works without dots in the packages names :-) with regard, Wilbert Berendsen -- http://www.wilbertberend

distutils on windows ignoring package_data

2011-05-21 Thread Wilbert Berendsen
Hi, I have created a distutils setup.py script that installs a list of packages (all subpackages of one main package). Some packages have package_data files (icons, translations, etc). Running setup.py install on my Linux system (python 2.6) perfectly installs all package data, but on Windows