My project has the structure:
project
- binaries
- win32
- win64
- linux32
- linux64
- linuxarm
- darwin64
- darwinarm
Each of the folders contain binaries that the project uses that are specific to the platform.
I’m trying to create a wheel for the project. I’m thinking that I should have a wheel for each of the platforms listed and include only the folder for that platform. Ideally I can rename the folder to something generic so that I can simplify the code that invokes the needed binary.
Would anyone have any thoughts on how I could do this?
Apologies if this question is a bit vague. I’m very new to using wheels.
Thanks in advance!