# HG changeset patch # User Denis Laxalde # Date 1475654186 -7200 # Node ID 7b6c3cb0e1039e2d7f0b698bc440597126048723 # Parent 4d80c6c70c4b52a43d45d676ebf9eb8084286f94 [skeleton] Have setuptools install data files Just add `include_package_data=True` as recommended by `setuptools documentation`_ as this appears to be the simplest way to handle this. Related to #13001466. .. _`setuptools documentation`: \ http://setuptools.readthedocs.io/en/latest/setuptools.html#including-data-files diff -r 4d80c6c70c4b -r 7b6c3cb0e103 cubicweb/skeleton/setup.py.tmpl --- a/cubicweb/skeleton/setup.py.tmpl Wed Oct 05 09:52:02 2016 +0200 +++ b/cubicweb/skeleton/setup.py.tmpl Wed Oct 05 09:56:26 2016 +0200 @@ -72,6 +72,7 @@ classifiers=classifiers, packages=find_packages(exclude=['test']), install_requires=install_requires, + include_package_data=True, entry_points={ 'cubicweb.cubes': [ '%(cubename)s=cubicweb_%(cubename)s',