api: Move integrations into their own subdirectory.
(imported from commit e1a64fbbc64e64e7a2c2fdda4cc9bc77ff3bc852)
This commit is contained in:
parent
7658be33a0
commit
2aad7624d1
5
setup.py
5
setup.py
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
import humbug
|
import humbug
|
||||||
|
|
||||||
|
import glob
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
setup(name='humbug',
|
setup(name='humbug',
|
||||||
|
@ -19,6 +20,8 @@ setup(name='humbug',
|
||||||
],
|
],
|
||||||
url='https://humbughq.com/dist/api/',
|
url='https://humbughq.com/dist/api/',
|
||||||
packages=['humbug'],
|
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"],
|
scripts=["bin/humbug-send"],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue