-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.55 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (31 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from distutils.core import setup
setup(
name='djwebsockets',
version='0.9.6',
packages=['djwebsockets', 'djwebsockets.demo', 'djwebsockets.mixins'],
keywords=['django', 'websockets', 'websocket', 'wsgi', 'simple websocket', 'simple', 'realtime', 'realtime server', 'realtime django'],
url='https://github.com/extremus-io/djwebsockets',
requires=['websockets', 'asyncio', 'django'],
license='MIT',
author='kittuov',
author_email='kittuov@gmail.com',
description='Simple Evented websocket interface for wsgi applications',
long_description='''
This is a part of a project extremus-io.
##### update v.9.4
- fixed a bug which deleted msgs sent from on_message call back
##### update V0.8.1:
- minor bug fix
##### update V0.8:
- added mixin support. now you can control the auth work flow in every event on_connect, on_message, on_close.
- now supports any wsgi application see documentation for more information.
- \* experimental * added django middleware support via a mixin (djwebsockets.mixins.wsgi.WSGIMixin) you can run django middleware for requests only for now
added a demo chatroom websocket configuration.
> The app is almost production ready. It lacks good documentation. partial documentation is available at https://pythonhosted.org/djwebsockets and https://extremus-io.github.io/djwebsockets
> Note: requires python > 3
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3'
]
)