From c9467bbfc39c6b58763cb69e4abfa98e72ac8717 Mon Sep 17 00:00:00 2001 From: kyle roux Date: Tue, 25 Aug 2015 13:00:54 -0700 Subject: [PATCH] fixs powderflask/cmsplugin-menus#5 --- MANIFEST.in | 4 +++- setup.py | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) 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')}, )