diff --git a/MANIFEST.in b/MANIFEST.in index dbd4c72..4041e49 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,5 @@ include LICENSE include README.rst -graft cmsplugin_menus/templates \ No newline at end of file +graft cmsplugin_menus/templates + +recursive-include cmsplugin_menus *.html diff --git a/setup.py b/setup.py index af26f78..9243536 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ import os -from setuptools import setup, find_packages +from setuptools import setup, find_packages, findall # Utility function to read the README file. # Used for the long_description. It's nice, because now 1) we have a top level @@ -30,4 +30,5 @@ def read(fname): include_package_data=True, zip_safe=False, install_requires=['setuptools'], + package_data={'':findall('cmsplugin_menus')}, )