api: Move integrations into their own subdirectory.

(imported from commit e1a64fbbc64e64e7a2c2fdda4cc9bc77ff3bc852)
This commit is contained in:
Waseem Daher 2013-02-07 14:07:16 -05:00
parent 7658be33a0
commit 2aad7624d1
2 changed files with 4 additions and 1 deletions

View file

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