-
Notifications
You must be signed in to change notification settings - Fork 116
/
setup.py
38 lines (37 loc) · 1.29 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, find_packages
setup(
name='pubnub',
version='9.1.0',
description='PubNub Real-time push service in the cloud',
author='PubNub',
author_email='support@pubnub.com',
url='http://pubnub.com',
project_urls={
'Source': 'https://github.com/pubnub/python',
'Documentation': 'https://www.pubnub.com/docs/sdks/python',
},
packages=find_packages(exclude=("examples*", 'tests*')),
license='PubNub Software Development Kit License',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
),
python_requires='>=3.7',
install_requires=[
'pycryptodomex>=3.3',
'requests>=2.4',
'cbor2',
'aiohttp'
],
zip_safe=False,
)