From 2aad7624d17d51d75a08bfb07ea3e4243e9aa839 Mon Sep 17 00:00:00 2001 From: Waseem Daher Date: Thu, 7 Feb 2013 14:07:16 -0500 Subject: [PATCH] api: Move integrations into their own subdirectory. (imported from commit e1a64fbbc64e64e7a2c2fdda4cc9bc77ff3bc852) --- {examples => integrations}/humbug_trac.py | 0 setup.py | 5 ++++- 2 files changed, 4 insertions(+), 1 deletion(-) rename {examples => integrations}/humbug_trac.py (100%) diff --git a/examples/humbug_trac.py b/integrations/humbug_trac.py similarity index 100% rename from examples/humbug_trac.py rename to integrations/humbug_trac.py diff --git a/setup.py b/setup.py index 02292ae..9de0246 100644 --- a/setup.py +++ b/setup.py @@ -3,6 +3,7 @@ import humbug +import glob from distutils.core import setup setup(name='humbug', @@ -19,6 +20,8 @@ setup(name='humbug', ], url='https://humbughq.com/dist/api/', packages=['humbug'], - data_files=[('examples', ["examples/humbugrc", "examples/send-message"])], + data_files=[('examples', ["examples/humbugrc", "examples/send-message"]), + ('integrations', glob.glob('integrations/*')), + ], scripts=["bin/humbug-send"], )