From a412dc71c7f0a5339a8057d1c73b6f2ce93a2c62 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Wed, 9 Dec 2015 08:25:09 +0100 Subject: [PATCH] [fix] try to include static files during installation --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 087e698..def42f6 100644 --- a/setup.py +++ b/setup.py @@ -16,4 +16,9 @@ setup(name='prosopopee', license= 'GPLv3+', scripts=['prosopopee'], keywords='', + include_package_data=True, + package_data={ + 'static': ['*.css', '*.js'], + 'templates': ['*.html'], + }, )