|
2 | 2 |
|
3 | 3 | setup( |
4 | 4 | name='pubnub', |
5 | | - version='7.0.1', |
| 5 | + version='7.0.2', |
6 | 6 | description='PubNub Real-time push service in the cloud', |
7 | 7 | author='PubNub', |
8 | 8 | author_email='support@pubnub.com', |
9 | 9 | url='http://pubnub.com', |
| 10 | + project_urls={ |
| 11 | + 'Source': 'https://github.com/pubnub/python', |
| 12 | + 'Documentation': 'https://www.pubnub.com/docs/sdks/python', |
| 13 | + }, |
10 | 14 | packages=find_packages(exclude=("examples*", 'tests*')), |
11 | 15 | license='MIT', |
12 | 16 | classifiers=( |
13 | 17 | 'Development Status :: 5 - Production/Stable', |
14 | 18 | 'Intended Audience :: Developers', |
15 | 19 | 'Programming Language :: Python', |
16 | | - 'Programming Language :: Python :: 3.6', |
17 | 20 | 'Programming Language :: Python :: 3.7', |
18 | 21 | 'Programming Language :: Python :: 3.8', |
19 | 22 | 'Programming Language :: Python :: 3.9', |
| 23 | + 'Programming Language :: Python :: 3.10', |
20 | 24 | 'Programming Language :: Python :: Implementation :: CPython', |
21 | 25 | 'License :: OSI Approved :: MIT License', |
22 | 26 | 'Operating System :: OS Independent', |
23 | 27 | 'Topic :: Internet :: WWW/HTTP', |
24 | 28 | 'Topic :: Software Development :: Libraries :: Python Modules', |
25 | 29 | ), |
| 30 | + python_requires='>=3.7', |
26 | 31 | install_requires=[ |
27 | 32 | 'pycryptodomex>=3.3', |
28 | 33 | 'requests>=2.4', |
|
0 commit comments