I have a Python package that includes the subdirectories bin_win32 , bin_win64 , bin_osx , bin_lnx32 and bin_lnx64 with binaries for the respective platforms, which I call through the steamcloud.py Python steamcloud.py . When I run python setup.py bdist_wheel --universal , the created wheel does not include files in these subdirectories, but only the Python file. How can I get them in the wheel?
Note. I know 1) that the --universal flag is for Python-only packages and 2) that I have to create separate wheels for each platform. However, I do not have access to Windows or Linux computers for development, and there is no naming convention for Linux-specific drives.
The contents of setup.py can be found here .
source share