Skip to content

Commit b530491

Browse files
committed
bumped to 0.1.3
1 parent 19cfdb1 commit b530491

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55
from distutils.core import setup
66

77
setup(name = "ws4py",
8-
version = '0.1.2',
8+
version = '0.1.3',
99
description = "WebSocket library for Python",
1010
maintainer = "Sylvain Hellegouarch",
1111
maintainer_email = "sh@defuze.org",
1212
url = "https://github.com/Lawouach/WebSocket-for-Python",
1313
download_url = "http://www.defuze.org/oss/ws4py/",
14-
packages = ["ws4py", "ws4py.client", "ws4py.server", "ws4py.server.handler"],
14+
packages = ["ws4py", "ws4py.client", "ws4py.server",
15+
"ws4py.server.handler", "ws4py.server.wsgi"],
1516
platforms = ["any"],
1617
license = 'BSD',
1718
long_description = "WebSocket library for the Python"

ws4py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#
2929

3030
__author__ = "Sylvain Hellegouarch"
31-
__version__ = "0.1.2"
31+
__version__ = "0.1.3"
3232
__all__ = ['WS_KEY']
3333

3434
WS_KEY = "258EAFA5-E914-47DA-95CA-C5AB0DC85B11"

0 commit comments

Comments
 (0)