From 7c6898b2b0f150a396a836da31f2d03dbc3fedcf Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Sun, 30 Sep 2012 14:48:28 -0400 Subject: [PATCH] Updating and completing the list of necessary files in the setup.py package_data list. This was causing the problems seen in #17. --- setup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index cb6d7d2..fc8f24b 100755 --- a/setup.py +++ b/setup.py @@ -46,9 +46,11 @@ 'snakeviz': ['static/*.ico', 'static/bootstrap/js/*.js', 'static/bootstrap/css/*.css', - 'static/tooltip/js/*.js', - 'static/tooltip/css/*.css', + 'static/bootstrap/img/*.png', + 'static/tooltip/*.js', + 'static/tooltip/*.css', 'static/viz/*.js', + 'static/*.js', 'templates/*.html'] }, install_requires=['tornado>=2.0', 'jinja2>=2.0'],