Skip to content

Commit 7aa522c

Browse files
Merge pull request #17 from pusher/add-2-to-setup-py
Improve accepted python versions in setup.py
2 parents 7eacbaf + 5bf8037 commit 7aa522c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,22 @@
2121
author='Pusher',
2222
author_email='support@pusher.com',
2323
classifiers=[
24-
'Development Status :: 3 - Alpha',
2524
'Intended Audience :: Developers',
25+
'Programming Language :: Python',
26+
'Programming Language :: Python :: 2',
27+
'Programming Language :: Python :: 2.7',
2628
'Programming Language :: Python :: 3',
29+
'Programming Language :: Python :: 3.4',
30+
'Programming Language :: Python :: 3.5',
31+
'Programming Language :: Python :: 3.6',
32+
'Programming Language :: Python :: 3.7',
33+
'Programming Language :: Python :: Implementation :: CPython',
2734
],
2835
dependency_links=dependency_links,
2936
description='Pusher Push Notifications Python server SDK',
3037
include_package_data=True,
3138
install_requires=install_requires,
39+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*",
3240
long_description=long_description,
3341
name='pusher_push_notifications',
3442
packages=find_packages(exclude=['tests']),

0 commit comments

Comments
 (0)