python-zulip-api/setup.py
Jessica McKellar 637dece8bd Only include send_message-related examples in API release.
(imported from commit 058a121b4b3c6b2829396c3c7a1007656a9e09da)
2013-02-05 14:09:29 -05:00

25 lines
733 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import humbug
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"])],
scripts=["bin/humbug-send"],
)