From 03000a7cf2351b3f73248c91796fd8b8bb3e3179 Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Fri, 15 Mar 2013 00:22:49 -0400 Subject: [PATCH] Ship all of our examples in the API update tarball. (imported from commit 4162114707f69bcfb6ecea95d7bdf4c080b4b168) --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index db6f5bb..a0e4d89 100644 --- a/setup.py +++ b/setup.py @@ -21,12 +21,12 @@ setup(name='humbug', ], url='https://humbughq.com/dist/api/', packages=['humbug'], - data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"])] + \ + data_files=[('share/humbug/examples', glob.glob('examples/*'))] + \ [(os.path.join('share/humbug/', relpath), glob.glob(os.path.join(relpath, '*'))) for relpath in glob.glob("integrations/*")] + \ [('share/humbug/demos', [os.path.join("demos", relpath) for relpath in os.listdir("demos")])], - scripts=["bin/humbug-send"], + scripts=glob.glob("bin/*"), )