How do you add additional files to a wheel?
Have you tried using package_data in your setup.py? MANIFEST.in seems targetted for python versions <= 2.6, I’m not sure if higher versions even look at it. After exploring https://github.com/pypa/sampleproject, their MANIFEST.in says: # If using Python 2.6 or less, then have to include package data, even though # it’s already declared in setup.py include sample/*.dat … Read more