I'm writing a cross-platform package which need to include different binary file for different platforms (e.g. Linux/MAC OS/Windows and even 32bit/64bit Windows)
I need my package's setup.py to install different binary data files based on the platform. The problem is that I need the data files for all platforms to be included in the package where they may have the same name but different content.
Can someone suggest how to do it using distutils / setuptools setup.py?