2aad7624d1
(imported from commit e1a64fbbc64e64e7a2c2fdda4cc9bc77ff3bc852)
28 lines
830 B
Python
28 lines
830 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import humbug
|
|
|
|
import glob
|
|
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'],
|
|
data_files=[('examples', ["examples/humbugrc", "examples/send-message"]),
|
|
('integrations', glob.glob('integrations/*')),
|
|
],
|
|
scripts=["bin/humbug-send"],
|
|
)
|