One of the modules for my app uses functions from a .pyd file. There\'s an option to exclude dlls (exclude_dlls) but is there one for including them? The build process doesn
Maybe you could use the data_files option to setup():
import glob
setup(name='MyApp',
# other options,
data_files=[('.', glob.glob('*.dll')),
('.', glob.glob('*.pyd'))],
)
data_files should be a list of tuples, where each tuple contains:
This won't put the files into library.zip, which shouldn't be a problem for dlls, but I don't know about pyd files.