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"], )