pythonasyncioeventletgeventlong-pollinglow-latencysocket-iosocketiosocketio-serverweb-serverwebsocket
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
"""
|
|
python-socketio
|
|
---------------
|
|
|
|
Socket.IO server.
|
|
"""
|
|
import re
|
|
import sys
|
|
from setuptools import setup
|
|
|
|
with open('socketio/__init__.py', 'r') as f:
|
|
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
|
|
f.read(), re.MULTILINE).group(1)
|
|
|
|
with open('README.rst', 'r') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name='python-socketio',
|
|
version=version,
|
|
url='http://github.com/miguelgrinberg/python-socketio/',
|
|
license='MIT',
|
|
author='Miguel Grinberg',
|
|
author_email='[email protected]',
|
|
description='Socket.IO server',
|
|
long_description=long_description,
|
|
packages=['socketio'],
|
|
zip_safe=False,
|
|
include_package_data=True,
|
|
platforms='any',
|
|
install_requires=[
|
|
'bidict>=0.21.0',
|
|
'python-engineio>=4.1.0',
|
|
],
|
|
extras_require={
|
|
'client': [
|
|
'requests>=2.21.0',
|
|
'websocket-client>=0.54.0',
|
|
],
|
|
'asyncio_client': [
|
|
'aiohttp>=3.4',
|
|
'websockets>=7.0',
|
|
]
|
|
},
|
|
tests_require=[
|
|
'mock',
|
|
],
|
|
test_suite='tests' if sys.version_info >= (3, 0) else 'tests.common',
|
|
classifiers=[
|
|
'Environment :: Web Environment',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 3',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
'Topic :: Software Development :: Libraries :: Python Modules'
|
|
]
|
|
)
|
|
|