Miguel Grinberg
6 years ago
No known key found for this signature in database
GPG Key ID: 36848B262DF5F06C
1 changed files with
2 additions and
2 deletions
-
setup.py
|
|
@ -5,8 +5,8 @@ python-socketio |
|
|
|
Socket.IO server. |
|
|
|
""" |
|
|
|
import re |
|
|
|
import sys |
|
|
|
from setuptools import setup |
|
|
|
import six |
|
|
|
|
|
|
|
with open('socketio/__init__.py', 'r') as f: |
|
|
|
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]', |
|
|
@ -43,7 +43,7 @@ setup( |
|
|
|
tests_require=[ |
|
|
|
'mock', |
|
|
|
], |
|
|
|
test_suite='tests' if six.PY3 else 'tests.common', |
|
|
|
test_suite='tests' if sys.version_info >= (3, 0) else 'tests.common', |
|
|
|
classifiers=[ |
|
|
|
'Environment :: Web Environment', |
|
|
|
'Intended Audience :: Developers', |
|
|
|