When using setuptools/distribute, I can not get the installer to pull in any package_data files. Everything I've read says that the following is the correct way to do it. Can someone please advise?
setup(
name='myapp',
packages=find_packages(),
package_data={
'myapp': ['data/*.txt'],
},
include_package_data=True,
zip_safe=False,
install_requires=['distribute'],
)
where myapp/data/ is the location of the data files.
data_filessolved the problem. But this is error-prone and does not "feel right" to me. Can someone verify that it is really necessary to duplicate the configuration in bothpackage_dataanddata_files? – exhuma Nov 7 '11 at 12:42