How to include package data with setuptools/distutils?
I realize that this is an old question, but for people finding their way here via Google: package_data is a low-down, dirty lie. It is only used when building binary packages (python setup.py bdist …) but not when building source packages (python setup.py sdist …). This is, of course, ridiculous — one would expect that … Read more