How to add files outside of src directory to Python wheel
I have a Python package with the following directory structure:
Python setyp.py entrypoint referencing
I have a setup.py for my python project for wheel packaging and have defined entrypoints as given below:
How to create python wheel for each platform and only include binaries for that specific platform
My project has the structure:
How to deal with binary extensions (.pyd files) and binary scripts (.exe files) in a Python wheel file?
I’ve made a binary Python extension using C++ with the help of PyBind11.
This extension come with a “binary script” which is a regular executable file.