0923b7d3ef
This way we don't crash if dependencies aren't installed. License assent: https://github.com/zulip/python-zulip/pull/3#issuecomment-18182458 (imported from commit f1aa37e97c60a06234c004ada48e08984a085d6f)
47 lines
1.6 KiB
Python
47 lines
1.6 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import zulip
|
|
|
|
import os
|
|
from distutils.core import setup
|
|
import sys
|
|
|
|
import itertools
|
|
|
|
def version():
|
|
version_py = os.path.join(os.path.dirname(__file__), "zulip", "__init__.py")
|
|
with open(version_py) as in_handle:
|
|
version_line = itertools.dropwhile(lambda x: not x.startswith("__version__"),
|
|
in_handle).next()
|
|
version = version_line.split('=')[-1].strip().replace('"', '')
|
|
return version
|
|
|
|
def recur_expand(target_root, dir):
|
|
for root, _, files in os.walk(dir):
|
|
paths = [os.path.join(root, f) for f in files]
|
|
if len(paths):
|
|
yield os.path.join(target_root, root), paths
|
|
|
|
setup(name='zulip',
|
|
version=version(),
|
|
description='Bindings for the Zulip message API',
|
|
author='Zulip, Inc.',
|
|
author_email='zulip@zulip.com',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Topic :: Communications :: Chat',
|
|
],
|
|
url='https://www.zulip.com/dist/api/',
|
|
packages=['zulip'],
|
|
data_files=[('share/zulip/examples', ["examples/zuliprc", "examples/send-message", "examples/subscribe",
|
|
"examples/get-public-streams", "examples/unsubscribe",
|
|
"examples/list-members", "examples/list-subscriptions",
|
|
"examples/print-messages"])] + \
|
|
list(recur_expand('share/zulip', 'integrations/')),
|
|
scripts=["bin/zulip-send"],
|
|
)
|