-
Notifications
You must be signed in to change notification settings - Fork 131
/
setup.py
69 lines (65 loc) · 2.2 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import platform
import sys
from setuptools import setup, find_packages
# cryptography>=1.0 requires pypy>=2.6.0 because of the new cffi stuff.
cryptography = 'cryptography'
if platform.python_implementation() == "PyPy":
if sys.pypy_version_info < (2, 6):
cryptography = 'cryptography<1.0'
setup(
name="vumi",
version="0.6.19",
url='http://github.com/praekelt/vumi',
license='BSD',
description="Super-scalable messaging engine for the delivery of SMS, "
"Star Menu and chat messages to diverse audiences in "
"emerging markets and beyond.",
long_description=open('README.rst', 'r').read(),
author='Praekelt Foundation',
author_email='[email protected]',
packages=find_packages() + [
'twisted.plugins',
],
package_data={'twisted.plugins': ['twisted/plugins/*.py']},
include_package_data=True,
scripts=[
'vumi/scripts/vumi_tagpools.py',
'vumi/scripts/vumi_redis_tools.py',
'vumi/scripts/vumi_model_migrator.py',
'vumi/scripts/vumi_count_models.py',
'vumi/scripts/vumi_list_messages.py',
],
install_requires=[
cryptography, # See above for pypy-version-dependent requirement.
'zope.interface',
'Twisted>=16.4.0', # Minimum version supported by recent treq.
'txAMQP>=0.6.2',
'PyYAML',
'iso8601',
'pyOpenSSL>= 16.0.0',
'certifi',
'service_identity',
'txssmi>=0.3.0',
'wokkel',
'redis>=2.10.0,<3.0.0', # 3.x has a new api.
'txredis',
'python-smpp>=0.1.5',
'pytz',
'riak>=2.1',
'txJSON-RPC==0.5',
'txTwitter>=0.1.4a',
'treq<20.4.1', # https://github.com/twisted/treq/issues/303
'confmodel>=0.2.0',
'hyperloglog',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
],
)