Skip to content

Commit 1eb1819

Browse files
author
Callum Oakley
authored
Merge pull request #90 from bryanhelmig/patch-1
Add explicit support python 2 and 3.
2 parents 401a79a + bbf2794 commit 1eb1819

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

setup.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@
1919
author='Pusher',
2020
author_email='support@pusher.com',
2121
classifiers=[
22-
"License :: OSI Approved :: MIT License",
23-
"Programming Language :: Python",
24-
"Development Status :: 4 - Beta",
25-
"Intended Audience :: Developers",
26-
"Topic :: Internet :: WWW/HTTP",
22+
'License :: OSI Approved :: MIT License',
23+
'Programming Language :: Python',
24+
'Development Status :: 4 - Beta',
25+
'Intended Audience :: Developers',
26+
'Topic :: Internet :: WWW/HTTP',
27+
'Programming Language :: Python :: 2',
28+
'Programming Language :: Python :: 3',
2729
],
2830
keywords='pusher rest realtime websockets service',
2931
license='MIT',
@@ -44,7 +46,7 @@
4446
tests_require=['nose', 'mock', 'HTTPretty'],
4547

4648
extras_require={
47-
'aiohttp': ["aiohttp>=0.9.0"],
49+
'aiohttp': ['aiohttp>=0.9.0'],
4850
'tornado': ['tornado>=4.0.0']
4951
},
5052

0 commit comments

Comments
 (0)