I wrote a Python library in C++14. Since users often do not have a C++ compiler installed, I create wheels for Linux, Windows and macOS and upload those to PyPI. While this works fine for Linux and macOS, on Windows it is required to install the Microsoft Visual C++ Redistributable for Visual Studio 2015/2017/2019. When that's not done the user will only get a runtime error telling him that it failed to import the DLL.
Is there a way to add it into the wheels, automatically install it, or at least to give the user a warning telling him what exactly he has to do to get it to work?