From f69132e821afe8982ccf2ecbac98736dd0356a03 Mon Sep 17 00:00:00 2001 From: Adal Chiriliuc Date: Fri, 10 Oct 2014 21:33:10 +0300 Subject: [PATCH] Add __version__ Added __version__ attr to package so that scripts that check local packages to see if newer versions are available can work. Almost all Python packages have a version attr, and 90% of the ~70 that I use name it "__version__" --- websocket/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/websocket/__init__.py b/websocket/__init__.py index fa4b98b..f294533 100644 --- a/websocket/__init__.py +++ b/websocket/__init__.py @@ -20,3 +20,5 @@ Copyright (C) 2010 Hiroki Ohtani(liris) """ from ._core import * from ._app import WebSocketApp + +__version__ = "0.20.0"