-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
38 lines (36 loc) · 1.35 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
from setuptools import setup
with open('LONG_DESCRIPTION.rst') as f:
long_description = f.read()
setup(
name='ably',
version='1.0.1',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=['ably', 'ably.http', 'ably.rest', 'ably.transport',
'ably.types', 'ably.util'],
install_requires=['msgpack-python>=0.4.6',
'requests>=2.7.0,<3',
'six>=1.9.0'],
extras_require={
'oldcrypto': ['pycrypto>=2.6.1'],
'crypto': ['pycryptodome'],
},
author="Ably",
author_email='support@ably.io',
url='https://github.com/ably/ably-python',
description="A Python client library for ably.io realtime messaging",
long_description=long_description,
)