I know you can exclude certain packages using:
packages = find_packages("src", exclude=["test"]),
Is it also possible to exclude single python files? I am building a binary wheel and want to exclude certain source files which I "cythonized" with a custom function:
python cythonize bdist_wheel
At the moment I remove all python files which also have a .so library file after building the wheel with a custom script and I would like to do that with setup.py.