From 0b379058e1d967aead5a8ebd3642b5aad2fb3202 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Thu, 14 Feb 2013 14:09:59 -0500 Subject: [PATCH] api: Fix installation of example and integrations. Previously we were installing data files to e.g. /usr/local/example and /usr/local/integrations, which is really not OK. (imported from commit 0efb50412f93efabfe55443d5cac57a8ebb9fe06) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9de0246..40d40c7 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,8 @@ setup(name='humbug', ], url='https://humbughq.com/dist/api/', packages=['humbug'], - data_files=[('examples', ["examples/humbugrc", "examples/send-message"]), - ('integrations', glob.glob('integrations/*')), + data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"]), + ('share/humbug/integrations', glob.glob('integrations/*')), ], scripts=["bin/humbug-send"], )