2013-01-31 15:09:59 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import humbug
|
|
|
|
|
2013-02-07 14:07:16 -05:00
|
|
|
import glob
|
2013-02-19 10:17:06 -05:00
|
|
|
import os.path
|
2013-01-31 15:09:59 -05:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name='humbug',
|
|
|
|
version=humbug.__version__,
|
|
|
|
description='Bindings for the Humbug message API',
|
|
|
|
author='Humbug, Inc.',
|
|
|
|
author_email='humbug@humbughq.com',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Topic :: Communications :: Chat',
|
|
|
|
],
|
|
|
|
url='https://humbughq.com/dist/api/',
|
|
|
|
packages=['humbug'],
|
2013-02-19 10:17:06 -05:00
|
|
|
data_files=[('share/humbug/examples', ["examples/humbugrc", "examples/send-message"])] + \
|
|
|
|
[(os.path.join('share/humbug/', relpath),
|
|
|
|
glob.glob(os.path.join(relpath, '*'))) for relpath in
|
|
|
|
glob.glob("integrations/*")
|
|
|
|
],
|
2013-02-05 11:03:18 -05:00
|
|
|
scripts=["bin/humbug-send"],
|
2013-01-31 15:09:59 -05:00
|
|
|
)
|